Reformat ALL the source!
[quassel.git] / src / qtui / settingspages / coreconnectionsettingspage.h
index 58d2966..771876f 100644 (file)
 
 #include "ui_coreconnectionsettingspage.h"
 
-class CoreConnectionSettingsPage : public SettingsPage {
-  Q_OBJECT
+class CoreConnectionSettingsPage : public SettingsPage
+{
+    Q_OBJECT
 
 public:
-  CoreConnectionSettingsPage(QWidget *parent = 0);
+    CoreConnectionSettingsPage(QWidget *parent = 0);
 
-  inline bool hasDefaults() const { return true; }
+    inline bool hasDefaults() const { return true; }
 
 public slots:
-  void save();
-  void load();
-  void defaults();
+    void save();
+    void load();
+    void defaults();
 
 signals:
 
 private slots:
-  void widgetHasChanged();
+    void widgetHasChanged();
 
 private:
-  Ui::CoreConnectionSettingsPage ui;
-  CoreConnectionSettings::NetworkDetectionMode _detectionMode;
+    Ui::CoreConnectionSettingsPage ui;
+    CoreConnectionSettings::NetworkDetectionMode _detectionMode;
 
-  void setRadioButtons(CoreConnectionSettings::NetworkDetectionMode mode);
-  CoreConnectionSettings::NetworkDetectionMode modeFromRadioButtons() const;
+    void setRadioButtons(CoreConnectionSettings::NetworkDetectionMode mode);
+    CoreConnectionSettings::NetworkDetectionMode modeFromRadioButtons() const;
 
-  inline QString settingsKey() const { return QString("CoreConnection"); }
+    inline QString settingsKey() const { return QString("CoreConnection"); }
 };
 
+
 #endif