summaryrefslogtreecommitdiffstats
path: root/core/android.cpp
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2018-08-10 21:43:50 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2018-08-11 11:14:22 -0700
commit9f94aaf450200d1aab1dd7aff43cd8cf58de57a5 (patch)
tree247dce3dd2f39babe4d09ba47e54636c6056bdd3 /core/android.cpp
parentfd498a90db622d3093bce450d3e91ef73ba8b3f3 (diff)
downloadsubsurface-9f94aaf450200d1aab1dd7aff43cd8cf58de57a5.tar.gz
Whitespace cleanup, extra braces, and null checks
Thanks to Lubomir for the review. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'core/android.cpp')
-rw-r--r--core/android.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/android.cpp b/core/android.cpp
index 15f95612a..1a9e76e06 100644
--- a/core/android.cpp
+++ b/core/android.cpp
@@ -244,7 +244,7 @@ bool subsurface_user_is_root()
void checkPendingIntents()
{
QAndroidJniObject activity = QtAndroid::androidActivity();
- if(activity.isValid()) {
+ if (activity.isValid()) {
activity.callMethod<void>("checkPendingIntents");
qDebug() << "checkPendingIntents ";
return;