Reformat ALL the source!
[quassel.git] / src / qtui / settingspages / backlogsettingspage.h
index 0dad7d7..b5ffbc7 100644 (file)
 #include "settingspage.h"
 #include "ui_backlogsettingspage.h"
 
-class BacklogSettingsPage : public SettingsPage {
-  Q_OBJECT
+class BacklogSettingsPage : public SettingsPage
+{
+    Q_OBJECT
 
 public:
-  BacklogSettingsPage(QWidget *parent = 0);
+    BacklogSettingsPage(QWidget *parent = 0);
 
-  inline QString settingsKey() const { return "Backlog"; }
-  bool hasDefaults() const;
+    inline QString settingsKey() const { return "Backlog"; }
+    bool hasDefaults() const;
 
 public slots:
-  void save();
-  void load();
-  void defaults();
+    void save();
+    void load();
+    void defaults();
 
 private slots:
-  void widgetHasChanged();
+    void widgetHasChanged();
 
 private:
-  Ui::BacklogSettingsPage ui;
+    Ui::BacklogSettingsPage ui;
 };
 
+
 #endif