]> cloud.milkyroute.net Git - dolphin.git/blobdiff - src/settings/navigation/navigationsettingspage.h
Add clang-format and format code as in Frameworks
[dolphin.git] / src / settings / navigation / navigationsettingspage.h
index 8b4781b44793c0a32263ed763ff5d16e1267985c..e0f92884fb7acea328186bf0bee344d5451ace86 100644 (file)
@@ -9,6 +9,7 @@
 #include "settings/settingspagebase.h"
 
 class QCheckBox;
+class QRadioButton;
 
 /**
  * @brief Page for the 'Navigation' settings of the Dolphin settings dialog.
@@ -18,7 +19,7 @@ class NavigationSettingsPage : public SettingsPageBase
     Q_OBJECT
 
 public:
-    explicit NavigationSettingsPage(QWidgetparent);
+    explicit NavigationSettingsPage(QWidget *parent);
     ~NavigationSettingsPage() override;
 
     /** @see SettingsPageBase::applySettings() */
@@ -31,8 +32,10 @@ private:
     void loadSettings();
 
 private:
-    QCheckBox* m_openArchivesAsFolder;
-    QCheckBox* m_autoExpandFolders;
+    QCheckBox *m_openArchivesAsFolder;
+    QCheckBox *m_autoExpandFolders;
+    QRadioButton *m_openNewTabAfterLastTab;
+    QRadioButton *m_openNewTabAfterCurrentTab;
 };
 
 #endif