diff options
| author | hjk <hjk@qt.io> | 2020-10-05 05:27:30 +0200 |
|---|---|---|
| committer | hjk <hjk@qt.io> | 2020-10-05 08:46:27 +0000 |
| commit | fcaa6801cf609a0ecda64937d38096ecfb1c357f (patch) | |
| tree | 5bd1cc5133835f406206cf2ee365c9c0117d1e46 /src/plugins/debugger/moduleshandler.cpp | |
| parent | f4beb6314ce6bd86268057137dc935ed8b6a636d (diff) | |
| download | qt-creator-fcaa6801cf609a0ecda64937d38096ecfb1c357f.tar.gz | |
Utils: Start replacing SavedActions by QAction or Utils::Aspect
First mechanical step here is to derive SavedActions from BaseAspect
instead of QAction.
Change-Id: I2ec95883b825462c1d867f83cc2b3bd2c2732055
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
Diffstat (limited to 'src/plugins/debugger/moduleshandler.cpp')
| -rw-r--r-- | src/plugins/debugger/moduleshandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/debugger/moduleshandler.cpp b/src/plugins/debugger/moduleshandler.cpp index 333f792245..878ae20f57 100644 --- a/src/plugins/debugger/moduleshandler.cpp +++ b/src/plugins/debugger/moduleshandler.cpp @@ -224,7 +224,7 @@ bool ModulesModel::contextMenuEvent(const ItemViewEvent &ev) [this, modulePath] { engine->requestModuleSections(modulePath); }); Internal::addHideColumnActions(menu, ev.view()); - menu->addAction(action(SettingsDialog)); + menu->addAction(action(SettingsDialog)->action()); menu->popup(ev.globalPos()); return true; |
