Skip to content

Commit 43f3dbd

Browse files
authored
Merge pull request #40 from blu-base/coretoutils
Adapt to v4.13 API change: Id from Core to Utils
2 parents 54c2c89 + 5e15fb2 commit 43f3dbd

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/build_qmake.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ name: QMake Build Matrix
33
on: [push]
44

55
env:
6-
QT_VERSION: 5.14.2
7-
QT_CREATOR_VERSION: 4.12.0
6+
QT_VERSION: 5.15.1
7+
QT_CREATOR_VERSION: 4.13.0
88
PLUGIN_PRO: doxygen.pro
99
PLUGIN_NAME: Doxygen
1010

doxygen.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -577,7 +577,7 @@ uint Doxygen::documentProject(ProjectExplorer::Project* p, const DoxygenSettings
577577
&& fileExtension == "qml"
578578
)
579579
) {*/
580-
Core::IEditor* editor = editorManager->openEditor(files[i], Core::Id(),
580+
Core::IEditor* editor = editorManager->openEditor(files[i], Utils::Id(),
581581
Core::EditorManager::DoNotChangeCurrentEditor
582582
| Core::EditorManager::IgnoreNavigationHistory
583583
| Core::EditorManager::DoNotMakeVisible);

doxygenplugin.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ bool DoxygenPlugin::initialize(const QStringList& arguments, QString* errorStrin
111111
Core::Context globalcontext(C_GLOBAL);
112112
//Core::Context context(CMD_ID_DOXYGEN_MAINVIEW);
113113
Core::ActionContainer* toolsContainer = am->actionContainer(Core::Constants::M_TOOLS);
114-
Core::ActionContainer* doxygenMenu = am->createMenu(Core::Id(CMD_ID_DOXYGEN_MENU));
114+
Core::ActionContainer* doxygenMenu = am->createMenu(Utils::Id(CMD_ID_DOXYGEN_MENU));
115115
doxygenMenu->menu()->setTitle(tr("&Doxygen"));
116116
toolsContainer->addMenu(doxygenMenu);
117117

doxygensettings.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ namespace Internal {
3939
m_settings.fromSettings(settings);
4040
setId("A.General");
4141
setDisplayName(tr("Doxygen"));
42-
setCategory(Core::Id::fromString(QString(Constants::DOXYGEN_SETTINGS_CATEGORY)));
42+
setCategory(Utils::Id::fromString(QString(Constants::DOXYGEN_SETTINGS_CATEGORY)));
4343
setDisplayCategory("Doxygen");
4444
setCategoryIcon(Utils::Icon(":/doxygen.png"));
4545
}

0 commit comments

Comments
 (0)