diff options
author | davilla <davilla@4pi.com> | 2013-07-11 20:29:25 -0400 |
---|---|---|
committer | davilla <davilla@4pi.com> | 2013-07-11 20:31:21 -0400 |
commit | 0d29a97882a195e7271aecf6f568a06bb9e1d9da (patch) | |
tree | c94b51553eb973c9b49fc16d8b299478c6f09303 | |
parent | 9e4c515c5426bef749594610fb4915c5d4e3acaf (diff) |
fixed, ANativeActivity is a struct, not a class
-rw-r--r-- | xbmc/android/jni/Context.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/android/jni/Context.h b/xbmc/android/jni/Context.h index 73d47c05eb..cb0b9a47c9 100644 --- a/xbmc/android/jni/Context.h +++ b/xbmc/android/jni/Context.h @@ -22,7 +22,7 @@ #include "JNIBase.h" #include "BroadcastReceiver.h" -class ANativeActivity; +struct ANativeActivity; class CJNIIntent; class CJNIPackageManager; class CJNIBroadcastReceiver; |