diff options
author | Sergio Ahumada <sergio.ahumada@nokia.com> | 2011-08-18 06:26:06 (GMT) |
---|---|---|
committer | Sergio Ahumada <sergio.ahumada@nokia.com> | 2011-08-18 06:26:06 (GMT) |
commit | 06ef461b5374c42370fc350f53dba76a5d4c62f4 (patch) | |
tree | eb33081ef8f5f3a81c3f2ce14a73090fd610ab91 /tools | |
parent | 5e435bfcad5a05c775c9d45edbd2659c87416754 (diff) | |
parent | 4b90559d0a8b693241dd79682d0d31362497468b (diff) | |
download | Qt-06ef461b5374c42370fc350f53dba76a5d4c62f4.zip Qt-06ef461b5374c42370fc350f53dba76a5d4c62f4.tar.gz Qt-06ef461b5374c42370fc350f53dba76a5d4c62f4.tar.bz2 |
Merge remote-tracking branch 'review/master'
Diffstat (limited to 'tools')
-rw-r--r-- | tools/macdeployqt/shared/shared.cpp | 2 | ||||
-rw-r--r-- | tools/macdeployqt/tests/tst_deployment_mac.cpp | 2 | ||||
-rw-r--r-- | tools/qtconcurrent/codegenerator/src/codegenerator.cpp | 4 | ||||
-rw-r--r-- | tools/qtestlib/wince/cetest/deployment.h | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/tools/macdeployqt/shared/shared.cpp b/tools/macdeployqt/shared/shared.cpp index 1a9a6ab..156f1de 100644 --- a/tools/macdeployqt/shared/shared.cpp +++ b/tools/macdeployqt/shared/shared.cpp @@ -127,7 +127,7 @@ FrameworkInfo parseOtoolLibraryLine(const QString &line, bool useDebugLibs) while (part < parts.count()) { const QString currentPart = parts.at(part).simplified() ; ++part; - if (currentPart == "") + if (currentPart.isEmpty()) continue; if (state == QtPath) { diff --git a/tools/macdeployqt/tests/tst_deployment_mac.cpp b/tools/macdeployqt/tests/tst_deployment_mac.cpp index 858dc45..5921199 100644 --- a/tools/macdeployqt/tests/tst_deployment_mac.cpp +++ b/tools/macdeployqt/tests/tst_deployment_mac.cpp @@ -230,4 +230,4 @@ void tst_deployment_mac::testFindAppBinarty() QTEST_MAIN(tst_deployment_mac) -#include "tst_deployment_mac.moc"
\ No newline at end of file +#include "tst_deployment_mac.moc" diff --git a/tools/qtconcurrent/codegenerator/src/codegenerator.cpp b/tools/qtconcurrent/codegenerator/src/codegenerator.cpp index b8436b9..c81fe97 100644 --- a/tools/qtconcurrent/codegenerator/src/codegenerator.cpp +++ b/tools/qtconcurrent/codegenerator/src/codegenerator.cpp @@ -134,7 +134,7 @@ const Compound operator+(const Item &a, const char * const text) const Compound operator+(const char * const text, const Item &b) { - return Compound(Text(text), b); + return Compound(Text(text), b); } -}
\ No newline at end of file +} diff --git a/tools/qtestlib/wince/cetest/deployment.h b/tools/qtestlib/wince/cetest/deployment.h index f3645e0..a5ef32d 100644 --- a/tools/qtestlib/wince/cetest/deployment.h +++ b/tools/qtestlib/wince/cetest/deployment.h @@ -72,4 +72,4 @@ private: inline void DeploymentHandler::setConnection(AbstractRemoteConnection *connection) { m_connection = connection; } inline AbstractRemoteConnection* DeploymentHandler::connection() const { return m_connection; } -#endif
\ No newline at end of file +#endif |