aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/coreplugin/coreimpl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/coreplugin/coreimpl.cpp')
-rw-r--r--src/plugins/coreplugin/coreimpl.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/plugins/coreplugin/coreimpl.cpp b/src/plugins/coreplugin/coreimpl.cpp
index 81db34a2ac..1cfe46f00f 100644
--- a/src/plugins/coreplugin/coreimpl.cpp
+++ b/src/plugins/coreplugin/coreimpl.cpp
@@ -69,6 +69,17 @@ bool CoreImpl::showOptionsDialog(const QString &group, const QString &page, QWid
return m_mainwindow->showOptionsDialog(group, page, parent);
}
+bool CoreImpl::showWarningWithOptions(const QString &title, const QString &text,
+ const QString &details,
+ const QString &settingsCategory,
+ const QString &settingsId,
+ QWidget *parent)
+{
+ return m_mainwindow->showWarningWithOptions(title, text,
+ details, settingsCategory,
+ settingsId, parent);
+}
+
ActionManager *CoreImpl::actionManager() const
{
return m_mainwindow->actionManager();