Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a3f514f5 authored by Siarhei Vishniakou's avatar Siarhei Vishniakou
Browse files

Add override annotation to updateInfo

While digging through callers of setFocusedApplication, it was hard to
find updateInfo implementation.
Mark this function as override to ensure there is relation to the base
class InputApplicationHandle.

Bug: none
Test: none
Change-Id: Ia3f5cc99349dac1e2dbfd6d7ebde5067e93450d0
parent 9e2222c1
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -29,11 +29,11 @@ namespace android {
class NativeInputApplicationHandle : public InputApplicationHandle {
class NativeInputApplicationHandle : public InputApplicationHandle {
public:
public:
    explicit NativeInputApplicationHandle(jweak objWeak);
    explicit NativeInputApplicationHandle(jweak objWeak);
    virtual ~NativeInputApplicationHandle();
    ~NativeInputApplicationHandle() override;


    jobject getInputApplicationHandleObjLocalRef(JNIEnv* env);
    jobject getInputApplicationHandleObjLocalRef(JNIEnv* env);


    virtual bool updateInfo();
    bool updateInfo() override;


private:
private:
    jweak mObjWeak;
    jweak mObjWeak;