Fixed some inconsistencies in code indentation
[jenirok] / src / gui / searchdialog.h
index 09d13ed..3364c1a 100644 (file)
@@ -32,25 +32,25 @@ class SearchDialog : public QDialog
 
 public:
 
-       struct SearchDetails
-       {
-               QString name;
-               QString location;
-               int type;
-       };
+    struct SearchDetails
+    {
+        QString name;
+        QString location;
+        int type;
+    };
 
     SearchDialog(QWidget* parent = 0);
 
 signals:
-       void search(SearchDialog::SearchDetails& details);
+    void search(SearchDialog::SearchDetails& details);
 
 private slots:
-       void searchPressed();
+    void searchPressed();
 
 private:
-       QLineEdit* numberInput_;
-       QLineEdit* locationInput_;
-       ButtonSelector* selector_;
+    QLineEdit* numberInput_;
+    QLineEdit* locationInput_;
+    ButtonSelector* selector_;
 
 };