diff mbox

[Branch,~glmark2-dev/glmark2/trunk] Rev 185: Android: Call the correct super-class function OnDestroy().

Message ID 20120117154213.3322.87548.launchpad@ackee.canonical.com
State Accepted
Headers show

Commit Message

alexandros.frantzis@linaro.org Jan. 17, 2012, 3:42 p.m. UTC
------------------------------------------------------------
revno: 185
committer: Alexandros Frantzis <alexandros.frantzis@linaro.org>
branch nick: trunk
timestamp: Fri 2012-01-13 23:14:04 +0200
message:
  Android: Call the correct super-class function OnDestroy().
modified:
  android/src/org/linaro/glmark2/Glmark2Activity.java


--
lp:glmark2
https://code.launchpad.net/~glmark2-dev/glmark2/trunk

You are subscribed to branch lp:glmark2.
To unsubscribe from this branch go to https://code.launchpad.net/~glmark2-dev/glmark2/trunk/+edit-subscription
diff mbox

Patch

=== modified file 'android/src/org/linaro/glmark2/Glmark2Activity.java'
--- android/src/org/linaro/glmark2/Glmark2Activity.java	2011-10-26 11:12:19 +0000
+++ android/src/org/linaro/glmark2/Glmark2Activity.java	2012-01-13 21:14:04 +0000
@@ -17,7 +17,7 @@ 
 
     @Override
     protected void onDestroy() {
-        super.onPause();
+        super.onDestroy();
         mWakeLock.release();
     }