diff options
| author | Xing LinKun <[email protected]> | 2021-03-30 17:59:02 +0800 |
|---|---|---|
| committer | Volker Hilsheimer <[email protected]> | 2021-03-31 01:09:24 +0000 |
| commit | 6a7d2da7dde2500616022cdb9ea9867513d17053 (patch) | |
| tree | 5f14bdf957a1f6576f3cf6d8a5c8696024b9f8ed /src/plugins/platforms/android/androidcontentfileengine.cpp | |
| parent | ae0fe7d4daa051f4f1e6540005d81c64f6c191a4 (diff) | |
Fix coding style in android platform and style plugins
Change-Id: Ic0a1150178c571ea0c20a045ad7520d23d6d878c
Reviewed-by: Volker Hilsheimer <[email protected]>
Diffstat (limited to 'src/plugins/platforms/android/androidcontentfileengine.cpp')
| -rw-r--r-- | src/plugins/platforms/android/androidcontentfileengine.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/plugins/platforms/android/androidcontentfileengine.cpp b/src/plugins/platforms/android/androidcontentfileengine.cpp index 9cea454c165..8ac950dbfea 100644 --- a/src/plugins/platforms/android/androidcontentfileengine.cpp +++ b/src/plugins/platforms/android/androidcontentfileengine.cpp @@ -76,9 +76,8 @@ bool AndroidContentFileEngine::open(QIODevice::OpenMode openMode) QJniObject::fromString(fileName(DefaultName)).object(), QJniObject::fromString(openModeStr).object()); - if (fd < 0) { + if (fd < 0) return false; - } return QFSFileEngine::open(openMode, fd, QFile::AutoCloseHandle); } |
