diff options
author | Kevin Smith <git@kismith.co.uk> | 2012-06-23 08:47:32 (GMT) |
---|---|---|
committer | Kevin Smith <git@kismith.co.uk> | 2012-06-23 08:47:44 (GMT) |
commit | d1c7372f3d944ded9daf01a3ffa28da7d41fab24 (patch) | |
tree | f052f07b080043c1cc438c1d80cf7ad360467f82 /Swift/QtUI | |
parent | c4f1c078ca0d6a9d6fe93655da5fb6010cc6e050 (diff) | |
download | swift-d1c7372f3d944ded9daf01a3ffa28da7d41fab24.zip swift-d1c7372f3d944ded9daf01a3ffa28da7d41fab24.tar.bz2 |
Fix warning
Diffstat (limited to 'Swift/QtUI')
-rw-r--r-- | Swift/QtUI/QtSwift.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Swift/QtUI/QtSwift.cpp b/Swift/QtUI/QtSwift.cpp index ca609de..13b2175 100644 --- a/Swift/QtUI/QtSwift.cpp +++ b/Swift/QtUI/QtSwift.cpp @@ -150,7 +150,7 @@ QtSwift::QtSwift(const po::variables_map& options) : networkFactories_(&clientMa Swift::logging = true; } - tabs_ = options.count("no-tabs") && !(splitter_ > 0) ? NULL : new QtChatTabs(); + tabs_ = options.count("no-tabs") && !splitter_ ? NULL : new QtChatTabs(); bool startMinimized = options.count("start-minimized") > 0; applicationPathProvider_ = new PlatformApplicationPathProvider(SWIFT_APPLICATION_NAME); storagesFactory_ = new FileStoragesFactory(applicationPathProvider_->getDataDir()); |