Skip to content

Commit d75a93f

Browse files
committed
Fix bugs
1 parent 92b6037 commit d75a93f

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

src/plugins/coreplugin/internal/CorePlugin.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -339,9 +339,9 @@ namespace Core::Internal {
339339
addIcon("org.diffscope.core.panel.properties", "TextBulletListSquareEdit20Filled");
340340
addIcon("org.diffscope.core.panel.metadata", "TextBulletListSquareEdit20Filled");
341341
addIcon("org.diffscope.core.panel.plugins", "PuzzlePiece16Filled");
342-
// addIcon("org.diffscope.core.panel.arrangement", "GanttChart16Filled");
343-
// addIcon("org.diffscope.core.panel.mixer", "OptionsVertical16Filled");
344-
// addIcon("org.diffscope.core.panel.pianoRoll", "Midi20Filled");
342+
addIcon("org.diffscope.visualeditor.panel.arrangement", "GanttChart16Filled");
343+
addIcon("org.diffscope.visualeditor.panel.mixer", "OptionsVertical16Filled");
344+
addIcon("org.diffscope.visualeditor.panel.pianoRoll", "Midi20Filled");
345345
addIcon("org.diffscope.core.panel.notifications", "Alert16Filled");
346346
addIcon("org.diffscope.core.panel.tips", "ChatSparkle16Filled");
347347
addIcon("org.diffscope.core.timeline.goToStart", "Previous16Filled");

src/plugins/visualeditor/internal/VisualEditorPlugin.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ static auto getVisualEditorActionExtension() {
2020
return QAK_STATIC_ACTION_EXTENSION(visualeditor);
2121
}
2222

23-
namespace VisualEditor {
23+
namespace VisualEditor::Internal {
2424

2525
VisualEditorPlugin::VisualEditorPlugin() {
2626
}

src/plugins/visualeditor/internal/VisualEditorPlugin.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
#include <extensionsystem/iplugin.h>
55

6-
namespace VisualEditor {
6+
namespace VisualEditor::Internal {
77

88
class VisualEditorPlugin : public ExtensionSystem::IPlugin {
99
Q_OBJECT

src/plugins/visualeditor/internal/addon/ArrangementAddOn.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
#include <coreplugin/ProjectWindowInterface.h>
1010

11-
namespace VisualEditor {
11+
namespace VisualEditor::Internal {
1212
ArrangementAddOn::ArrangementAddOn(QObject *parent) : WindowInterfaceAddOn(parent) {}
1313

1414
ArrangementAddOn::~ArrangementAddOn() {}

src/plugins/visualeditor/internal/addon/ArrangementAddOn.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
#include <CoreApi/windowinterface.h>
55

6-
namespace VisualEditor {
6+
namespace VisualEditor::Internal {
77

88
class ArrangementAddOn : public Core::WindowInterfaceAddOn {
99
Q_OBJECT

src/plugins/visualeditor/internal/addon/ProjectAddOn.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
#include <visualeditor/ProjectViewModelContext.h>
66

7-
namespace VisualEditor {
7+
namespace VisualEditor::Internal {
88
ProjectAddOn::ProjectAddOn(QObject *parent) : WindowInterfaceAddOn(parent) {
99
}
1010

src/plugins/visualeditor/internal/addon/ProjectAddOn.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
#include <CoreApi/windowinterface.h>
55

6-
namespace VisualEditor {
6+
namespace VisualEditor::Internal {
77

88
class ProjectAddOn : public Core::WindowInterfaceAddOn {
99
Q_OBJECT

src/plugins/visualeditor/res/org.diffscope.visualeditor_actions.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<actionExtension xmlns:diffscope="http://schemas.diffscope.org/diffscope/actions/diffscope">
33
<version>1.0</version>
4-
<id>org.diffscope.importexportmanager</id>
4+
<id>org.diffscope.visualeditor</id>
55
<configuration>
66
<defaultCatalog>core.mainMenu</defaultCatalog>
77
<translationContext

0 commit comments

Comments
 (0)