X-Git-Url: http://vcs.maemo.org/git/?a=blobdiff_plain;f=src%2Fgui%2Fmainwindow.cpp;h=1e4de14ce473b3509f1236e679c8d80d4344a293;hb=10e8a9c76ee07e04061562e0012e1ef1233e6b3e;hp=9b0f45994917ec8ae15f693aea8980449851fd91;hpb=24735dfd4819d95fdbd551c0ac571006a713f0f5;p=jenirok diff --git a/src/gui/mainwindow.cpp b/src/gui/mainwindow.cpp index 9b0f459..1e4de14 100644 --- a/src/gui/mainwindow.cpp +++ b/src/gui/mainwindow.cpp @@ -148,7 +148,8 @@ void MainWindow::openSearch() if(!searchDialog_) { searchDialog_ = new SearchDialog(this); - connect(searchDialog_, SIGNAL(search(SearchDialog::SearchDetails&)), this, SLOT(handleSearch(SearchDialog::SearchDetails&))); + connect(searchDialog_, SIGNAL(search(SearchDialog::SearchDetails&)), + this, SLOT(handleSearch(SearchDialog::SearchDetails&))); } searchDialog_->show(); @@ -169,11 +170,11 @@ void MainWindow::handleSearch(SearchDialog::SearchDetails& details) void MainWindow::showAbout() { - if(!aboutDialog_) - { - aboutDialog_ = new AboutDialog(this); - } + if(!aboutDialog_) + { + aboutDialog_ = new AboutDialog(this); + } - aboutDialog_->show(); + aboutDialog_->show(); }