Renamed a function

This commit is contained in:
pelya
2012-08-12 18:01:16 +03:00
parent e46400f500
commit 4ccba0347a
6 changed files with 23 additions and 24 deletions

View File

@@ -524,14 +524,14 @@ class DemoRenderer extends GLSurfaceView_SDL.Renderer
return 1;
}
public void togglePlainAndroidSoftKeyboardInput() // Called from native code
public void showScreenKeyboardWithoutTextInputField() // Called from native code
{
class Callback implements Runnable
{
public MainActivity parent;
public void run()
{
parent.togglePlainAndroidSoftKeyboardInput();
parent.showScreenKeyboardWithoutTextInputField();
}
}
Callback cb = new Callback();