]> cloud.milkyroute.net Git - dolphin.git/blobdiff - src/settings/general/confirmationssettingspage.h
Add clang-format and format code as in Frameworks
[dolphin.git] / src / settings / general / confirmationssettingspage.h
index 52b101b2a228216e0881dea5e7ca31000a8865ca..56dd1a78ccc4d813992600aedb377df06c7bc922 100644 (file)
@@ -1,28 +1,16 @@
-/***************************************************************************
- *   Copyright (C) 2012 by Peter Penz <peter.penz19@gmail.com>             *
- *                                                                         *
- *   This program is free software; you can redistribute it and/or modify  *
- *   it under the terms of the GNU General Public License as published by  *
- *   the Free Software Foundation; either version 2 of the License, or     *
- *   (at your option) any later version.                                   *
- *                                                                         *
- *   This program is distributed in the hope that it will be useful,       *
- *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
- *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
- *   GNU General Public License for more details.                          *
- *                                                                         *
- *   You should have received a copy of the GNU General Public License     *
- *   along with this program; if not, write to the                         *
- *   Free Software Foundation, Inc.,                                       *
- *   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA            *
- ***************************************************************************/
+/*
+ * SPDX-FileCopyrightText: 2012 Peter Penz <peter.penz19@gmail.com>
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ */
 #ifndef CONFIRMATIONSSETTINGSPAGE_H
 #define CONFIRMATIONSSETTINGSPAGE_H
 
-#include "config-terminal.h"
+#include "config-dolphin.h"
 #include "settings/settingspagebase.h"
 
 class QCheckBox;
+class QComboBox;
 
 /**
  * @brief Page for the enabling or disabling confirmation dialogs.
@@ -32,7 +20,7 @@ class ConfirmationsSettingsPage : public SettingsPageBase
     Q_OBJECT
 
 public:
-    explicit ConfirmationsSettingsPage(QWidgetparent);
+    explicit ConfirmationsSettingsPage(QWidget *parent);
     ~ConfirmationsSettingsPage() override;
 
     /** @see SettingsPageBase::applySettings() */
@@ -45,16 +33,16 @@ private:
     void loadSettings();
 
 private:
-    QCheckBoxm_confirmMoveToTrash;
-    QCheckBoxm_confirmEmptyTrash;
-    QCheckBoxm_confirmDelete;
+    QCheckBox *m_confirmMoveToTrash;
+    QCheckBox *m_confirmEmptyTrash;
+    QCheckBox *m_confirmDelete;
 
-#ifdef HAVE_TERMINAL
-    QCheckBoxm_confirmClosingTerminalRunningProgram;
+#if HAVE_TERMINAL
+    QCheckBox *m_confirmClosingTerminalRunningProgram;
 #endif
 
-    QCheckBoxm_confirmClosingMultipleTabs;
-    QCheckBox* m_confirmScriptExecution;
+    QCheckBox *m_confirmClosingMultipleTabs;
+    QComboBox *m_confirmScriptExecution;
 };
 
 #endif