aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/scxmleditor
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2023-11-17 18:06:55 +0100
committerhjk <hjk@qt.io>2023-11-22 08:25:58 +0000
commit27084b18846e1bd1401d10f5827d431b8129ab3d (patch)
tree89ed9028b6b8d6b5001967111886fb221d8ab88e /src/plugins/scxmleditor
parent69b96ff7d2f19227970919d5af11c1483c420c7a (diff)
ScxmlEditor: Rename scxmleditorfactory.h and scxmleditordata.cpp
... to scxmleditor.h and scxmleditor.cpp so it looks like a normal file pair again. Change-Id: I5be9d78cf39cba2a04525aca79e36b8283f08870 Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: Jarek Kobus <jaroslaw.kobus@qt.io>
Diffstat (limited to 'src/plugins/scxmleditor')
-rw-r--r--src/plugins/scxmleditor/CMakeLists.txt3
-rw-r--r--src/plugins/scxmleditor/scxmleditor.cpp (renamed from src/plugins/scxmleditor/scxmleditordata.cpp)0
-rw-r--r--src/plugins/scxmleditor/scxmleditor.h (renamed from src/plugins/scxmleditor/scxmleditorfactory.h)0
-rw-r--r--src/plugins/scxmleditor/scxmleditor.qbs3
-rw-r--r--src/plugins/scxmleditor/scxmleditorplugin.cpp2
5 files changed, 3 insertions, 5 deletions
diff --git a/src/plugins/scxmleditor/CMakeLists.txt b/src/plugins/scxmleditor/CMakeLists.txt
index 4aa4fbad45b..85a1c7fc706 100644
--- a/src/plugins/scxmleditor/CMakeLists.txt
+++ b/src/plugins/scxmleditor/CMakeLists.txt
@@ -86,9 +86,8 @@ add_qtc_plugin(ScxmlEditor
scxmleditor_global.h
scxmleditortr.h
scxmleditorconstants.h
- scxmleditordata.cpp
+ scxmleditor.cpp scxmleditor.h
scxmleditordocument.cpp scxmleditordocument.h
- scxmleditorfactory.h
scxmleditorplugin.cpp
scxmleditorstack.cpp scxmleditorstack.h
scxmltexteditor.cpp scxmltexteditor.h
diff --git a/src/plugins/scxmleditor/scxmleditordata.cpp b/src/plugins/scxmleditor/scxmleditor.cpp
index f28965ff28a..f28965ff28a 100644
--- a/src/plugins/scxmleditor/scxmleditordata.cpp
+++ b/src/plugins/scxmleditor/scxmleditor.cpp
diff --git a/src/plugins/scxmleditor/scxmleditorfactory.h b/src/plugins/scxmleditor/scxmleditor.h
index 98b1090ccd5..98b1090ccd5 100644
--- a/src/plugins/scxmleditor/scxmleditorfactory.h
+++ b/src/plugins/scxmleditor/scxmleditor.h
diff --git a/src/plugins/scxmleditor/scxmleditor.qbs b/src/plugins/scxmleditor/scxmleditor.qbs
index ae8c69f0d5b..b583163579d 100644
--- a/src/plugins/scxmleditor/scxmleditor.qbs
+++ b/src/plugins/scxmleditor/scxmleditor.qbs
@@ -21,9 +21,8 @@ QtcPlugin {
files: [
"scxmleditor_global.h", "scxmleditortr.h",
"scxmleditorconstants.h",
- "scxmleditordata.cpp",
+ "scxmleditor.cpp", "scxmleditor.h",
"scxmleditordocument.cpp", "scxmleditordocument.h",
- "scxmleditorfactory.h",
"scxmleditorplugin.cpp",
"scxmleditorstack.cpp", "scxmleditorstack.h",
"scxmltexteditor.cpp", "scxmltexteditor.h",
diff --git a/src/plugins/scxmleditor/scxmleditorplugin.cpp b/src/plugins/scxmleditor/scxmleditorplugin.cpp
index 743664790bb..f8a197b124d 100644
--- a/src/plugins/scxmleditor/scxmleditorplugin.cpp
+++ b/src/plugins/scxmleditor/scxmleditorplugin.cpp
@@ -1,7 +1,7 @@
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
-#include "scxmleditorfactory.h"
+#include "scxmleditor.h"
#include <extensionsystem/iplugin.h>