Reformat ALL the source!
[quassel.git] / src / qtui / settingspages / notificationssettingspage.h
index 4ba9f18..1335414 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2005-08 by the Quassel IRC Team                         *
+ *   Copyright (C) 2005-09 by the Quassel Project                          *
  *   devel@quassel-irc.org                                                 *
  *                                                                         *
  *   This program is free software; you can redistribute it and/or modify  *
  *  \NOTE: When this is called, all backends need to be already registered. No dynamic changes
  *         are tracked or reacted to!
  */
-class NotificationsSettingsPage : public SettingsPage {
-  Q_OBJECT
+class NotificationsSettingsPage : public SettingsPage
+{
+    Q_OBJECT
 
-  public:
+public:
     NotificationsSettingsPage(QWidget *parent = 0);
 
     bool hasDefaults() const;
 
-  public slots:
+public slots:
     void save();
     void load();
     void defaults();
 
-  private slots:
+private slots:
     void widgetHasChanged();
 
-  private:
+private:
     QList<SettingsPage *> _configWidgets;
     bool _hasDefaults;
 };
 
+
 #endif