diff options
author | Janne Anttila <janne.anttila@digia.com> | 2010-11-15 12:28:25 (GMT) |
---|---|---|
committer | Janne Anttila <janne.anttila@digia.com> | 2010-11-15 12:28:25 (GMT) |
commit | 03c60ccac1ab416ebee7a262f1c910774fdc2ff2 (patch) | |
tree | 5dce0e77251b44ebf5325388ad626e6a44a46c43 /src/gui/util | |
parent | d92cbfc5d04d750dea1e49a377e62be564cac788 (diff) | |
download | Qt-03c60ccac1ab416ebee7a262f1c910774fdc2ff2.zip Qt-03c60ccac1ab416ebee7a262f1c910774fdc2ff2.tar.gz Qt-03c60ccac1ab416ebee7a262f1c910774fdc2ff2.tar.bz2 |
Fixed code style of d92cbfc5, reported by git push.
82: TAB character in non-leading whitespace
348: Flow control keywords must be followed by single space
356: Flow control keywords must be followed by single space
Rev-By: TrustMe
Diffstat (limited to 'src/gui/util')
-rw-r--r-- | src/gui/util/qdesktopservices_s60.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/util/qdesktopservices_s60.cpp b/src/gui/util/qdesktopservices_s60.cpp index 47b0cbe..56c2b98 100644 --- a/src/gui/util/qdesktopservices_s60.cpp +++ b/src/gui/util/qdesktopservices_s60.cpp @@ -79,7 +79,7 @@ _LIT(KFontsDir, "z:\\resource\\Fonts\\"); #ifndef USE_SCHEMEHANDLER // copied from miutset.h, so we don't get a dependency into the app layer -const TUid KUidMsgTypeSMTP = {0x10001028}; // 268439592 +const TUid KUidMsgTypeSMTP = {0x10001028}; // 268439592 const TUid KUidBrowser = { 0x10008D39 }; template<class R> @@ -345,7 +345,7 @@ static TDriveUnit exeDrive() static TDriveUnit writableExeDrive() { TDriveUnit drive = exeDrive(); - if(drive.operator TInt() == EDriveZ) + if (drive.operator TInt() == EDriveZ) return TDriveUnit(EDriveC); return drive; } @@ -353,7 +353,7 @@ static TDriveUnit writableExeDrive() static TPtrC writableDataRoot() { TDriveUnit drive = exeDrive(); - switch(drive.operator TInt()){ + switch (drive.operator TInt()){ case EDriveC: return PathInfo::PhoneMemoryRootPath(); break; |