Avoid infinite recursive loop

Looks like this should be "super." instead of "super_"
Found by spotbugs.

Change-Id: I83d096eee332361d62e783581bfa15017536081d
Reviewed-by: BogDan Vatra <bogdan@kdab.com>
This commit is contained in:
André Klitzing 2018-03-02 21:38:01 +01:00
parent 78e92997ed
commit 7fda40effa

View File

@ -132,7 +132,7 @@ public class QtActivity extends Activity
}
public boolean super_dispatchPopulateAccessibilityEvent(AccessibilityEvent event)
{
return super_dispatchPopulateAccessibilityEvent(event);
return super.dispatchPopulateAccessibilityEvent(event);
}
//---------------------------------------------------------------------------