Cosmetic fixes to detail view and other windows.
[jenirok] / src / gui / mainwindow.cpp
index 9b0f459..1e4de14 100644 (file)
@@ -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();
 
 }