summaryrefslogtreecommitdiff
path: root/src/plugins/texteditor/texteditoroptionspage.h
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2020-01-15 15:00:57 +0100
committerhjk <hjk@qt.io>2020-01-16 12:09:26 +0000
commit07b04c20560abed63240095094a2b95114ec61ad (patch)
treef9e7dc0a8467ec177e49dfd6d40a6736bb782c18 /src/plugins/texteditor/texteditoroptionspage.h
parented7fb30e66a1d9e9501b1bc5fc4a0593566398dc (diff)
downloadqt-creator-07b04c20560abed63240095094a2b95114ec61ad.tar.gz
TextEditor: Dissolve TextEditorOptionsPage intermediate hierarchy level
It's effectively setting only three properties nowadays, not enough to justify a case of reuse-by-inheritance anymore. Change-Id: I947fbc51e76c8d908da662dd58dce91614c28e08 Reviewed-by: David Schulz <david.schulz@qt.io>
Diffstat (limited to 'src/plugins/texteditor/texteditoroptionspage.h')
-rw-r--r--src/plugins/texteditor/texteditoroptionspage.h45
1 files changed, 0 insertions, 45 deletions
diff --git a/src/plugins/texteditor/texteditoroptionspage.h b/src/plugins/texteditor/texteditoroptionspage.h
deleted file mode 100644
index 3ba17d61a9..0000000000
--- a/src/plugins/texteditor/texteditoroptionspage.h
+++ /dev/null
@@ -1,45 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2016 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of Qt Creator.
-**
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 3 as published by the Free Software
-** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
-** included in the packaging of this file. Please review the following
-** information to ensure the GNU General Public License requirements will
-** be met: https://www.gnu.org/licenses/gpl-3.0.html.
-**
-****************************************************************************/
-
-#pragma once
-
-#include "texteditor_global.h"
-
-#include <coreplugin/dialogs/ioptionspage.h>
-
-namespace TextEditor {
-
-/**
- * An abstract options page in the Text Editor category.
- */
-class TEXTEDITOR_EXPORT TextEditorOptionsPage : public Core::IOptionsPage
-{
- Q_OBJECT
-
-public:
- explicit TextEditorOptionsPage(QObject *parent = nullptr);
-};
-
-} // namespace TextEditor