- Search plugin interface changed: enum constants to define widget types to allow...
[qtrapids] / src / gui / PreferencesDialog.h
index c368ea0..387a1e5 100644 (file)
@@ -33,27 +33,27 @@ class QDialogButtonBox;
 */
 class PreferencesDialog : public QDialog
 {
-       
+
        Q_OBJECT
-               
-       public:
-    PreferencesDialog(QWidget* parent = 0, Qt::WindowFlags f = 0);
-
-    ~PreferencesDialog();
-
-       private slots:
-               void on_browseDirButtonClicked();
-               void on_buttonClicked(QAbstractButton* button);
-               void on_downloadDirectorySelected(const QString& directory);
-               
-       private:
-               QLineEdit *dirLineEdit_;
-               QDialogButtonBox *dialogButtons_;
-               QSettings settings_;
-               
-               // Private functions:
-               void WriteSettings();
-               void ReadSettings();
+
+public:
+       PreferencesDialog(QWidget* parent = 0, Qt::WindowFlags f = 0);
+
+       ~PreferencesDialog();
+
+private slots:
+       void on_browseDirButtonClicked();
+       void on_buttonClicked(QAbstractButton* button);
+       void on_downloadDirectorySelected(const QString& directory);
+
+private:
+       QLineEdit *dirLineEdit_;
+       QDialogButtonBox *dialogButtons_;
+       QSettings settings_;
+
+       // Private functions:
+       void WriteSettings();
+       void ReadSettings();
 };
 
 #endif