diff options
author | Tobias Markmann <tm@ayena.de> | 2015-02-10 12:23:16 (GMT) |
---|---|---|
committer | Swift Review <review@swift.im> | 2015-02-11 15:19:47 (GMT) |
commit | 4eec07c2b1bded2e9ef2c32129228fa90771cddf (patch) | |
tree | 104f2577eee4d52e3cd8a1f90f4db6942f8673ff /Swift | |
parent | 7690cc3519c160c9532b5c0f0b7640b87a344720 (diff) | |
download | swift-4eec07c2b1bded2e9ef2c32129228fa90771cddf.zip swift-4eec07c2b1bded2e9ef2c32129228fa90771cddf.tar.bz2 |
Fix code style
Test-Information:
None.
Change-Id: Iaff0108547658e1b103905c78fac5d1faf3a15e1
Diffstat (limited to 'Swift')
-rw-r--r-- | Swift/QtUI/Trellis/QtDynamicGridLayout.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Swift/QtUI/Trellis/QtDynamicGridLayout.cpp b/Swift/QtUI/Trellis/QtDynamicGridLayout.cpp index 18abecd..e0bfa33 100644 --- a/Swift/QtUI/Trellis/QtDynamicGridLayout.cpp +++ b/Swift/QtUI/Trellis/QtDynamicGridLayout.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014 Isode Limited. + * Copyright (c) 2014-2015 Isode Limited. * All rights reserved. * See the COPYING file for more information. */ @@ -381,7 +381,7 @@ void QtDynamicGridLayout::handleTabCloseRequested(int index) { void QtDynamicGridLayout::handleTabCurrentChanged(int index) { if (index >= 0) { - QTabWidget *sendingTabWidget = dynamic_cast<QTabWidget*>(sender()); + QTabWidget* sendingTabWidget = dynamic_cast<QTabWidget*>(sender()); assert(sendingTabWidget); sendingTabWidget->widget(index)->setFocus(); } |