diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2019-02-23 18:31:02 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-04-12 18:19:07 +0300 |
commit | 9ed5cf16a4a0f982f0fae170740ee2886f634a14 (patch) | |
tree | 4b2852b5ea4f915346fe7afcbbdd50e9d679f60d /desktop-widgets/mainwindow.cpp | |
parent | 73a230b6e652f4bba1bf08cb21fec112a968ff0d (diff) | |
download | subsurface-9ed5cf16a4a0f982f0fae170740ee2886f634a14.tar.gz |
Coding style: remove Java-style function definition
Remove a few cases of
void fun() {
...
}
While touching these functions, fix a few other whitespace
coding style violations.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'desktop-widgets/mainwindow.cpp')
-rw-r--r-- | desktop-widgets/mainwindow.cpp | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/desktop-widgets/mainwindow.cpp b/desktop-widgets/mainwindow.cpp index 95b714d00..2a198110e 100644 --- a/desktop-widgets/mainwindow.cpp +++ b/desktop-widgets/mainwindow.cpp @@ -403,11 +403,11 @@ void MainWindow::enableDisableOtherDCsActions() ui.actionPreviousDC->setEnabled(nr); } -void MainWindow::setDefaultState() { +void MainWindow::setDefaultState() +{ setApplicationState("Default"); - if (mainTab->getEditMode() != MainTab::NONE) { + if (mainTab->getEditMode() != MainTab::NONE) ui.bottomLeft->currentWidget()->setEnabled(false); - } } MainWindow *MainWindow::instance() @@ -437,7 +437,8 @@ void MainWindow::recreateDiveList() MultiFilterSortModel::instance()->myInvalidate(); } -void MainWindow::configureToolbar() { +void MainWindow::configureToolbar() +{ if (current_dive) { bool freeDiveMode = current_dive->dc.divemode == FREEDIVE; ui.profCalcCeiling->setDisabled(freeDiveMode); @@ -1839,7 +1840,8 @@ void MainWindow::registerApplicationState(const QByteArray& state, QWidget *topL } } -void MainWindow::setApplicationState(const QByteArray& state) { +void MainWindow::setApplicationState(const QByteArray &state) +{ if (!applicationState.keys().contains(state)) return; |