From 7fc70b11fbefaf38bda9876b05784e8c5676eb89 Mon Sep 17 00:00:00 2001 From: Philipp Wiesemann Date: Sun, 5 May 2013 15:50:21 +0200 Subject: [PATCH] Changed signature of method recently added in Java file. --- android-project/src/org/libsdl/app/SDLActivity.java | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/android-project/src/org/libsdl/app/SDLActivity.java b/android-project/src/org/libsdl/app/SDLActivity.java index 9dd24d2d1..9bdf1e718 100644 --- a/android-project/src/org/libsdl/app/SDLActivity.java +++ b/android-project/src/org/libsdl/app/SDLActivity.java @@ -120,10 +120,11 @@ protected void onDestroy() { * This method is called by SDL if SDL did not handle a message itself. * This happens if a received message contains an unsupported command. * Method can be overwritten to handle Messages in a different class. - * @param msg the Message which was not handled. - * @return if the Message was handled in method. + * @param command the command of the message. + * @param param the parameter of the message. May be null. + * @return if the message was handled in overridden method. */ - protected boolean onUnhandledMessage(Message msg) { + protected boolean onUnhandledMessage(int command, Object param) { return false; } @@ -158,7 +159,7 @@ public void handleMessage(Message msg) { break; default: - if ((context instanceof SDLActivity) && !((SDLActivity) context).onUnhandledMessage(msg)) { + if ((context instanceof SDLActivity) && !((SDLActivity) context).onUnhandledMessage(msg.arg1, msg.obj)) { Log.e(TAG, "error handling message, command is " + msg.arg1); } }