diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2018-08-10 21:43:50 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-08-11 11:14:22 -0700 |
commit | 9f94aaf450200d1aab1dd7aff43cd8cf58de57a5 (patch) | |
tree | 247dce3dd2f39babe4d09ba47e54636c6056bdd3 /core/android.cpp | |
parent | fd498a90db622d3093bce450d3e91ef73ba8b3f3 (diff) | |
download | subsurface-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.cpp | 2 |
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; |