From 05dbc26cc39b96073000236dac568e35f1cce315 Mon Sep 17 00:00:00 2001 From: Tobias Hunger Date: Fri, 30 Aug 2013 13:22:31 +0200 Subject: [PATCH] Core: Small cleanups Change-Id: Id85ef2e53f42fd934716d07e1bfc7ec14a59f878 Reviewed-by: Kurt Pattyn Reviewed-by: hjk --- src/plugins/coreplugin/icore.cpp | 51 -------------------------------- src/plugins/coreplugin/icore.h | 7 ----- 2 files changed, 58 deletions(-) diff --git a/src/plugins/coreplugin/icore.cpp b/src/plugins/coreplugin/icore.cpp index f4fd3e59087..624b731ee32 100644 --- a/src/plugins/coreplugin/icore.cpp +++ b/src/plugins/coreplugin/icore.cpp @@ -95,36 +95,6 @@ */ -/*! - \fn ActionManager *ICore::actionManager() - \obsolete - - Use Core::ActionManager directly. -*/ - -/*! - \fn DocumentManager *ICore::documentManager() - \obsolete - - Use Core::DocumentManager directly. -*/ - -/*! - \fn MessageManager *ICore::messageManager() - \obsolete - - Use Core::MessageManager directly. -*/ - -/*! - \fn EditorManager *ICore::editorManager() - \brief Returns the application's editor manager. - - The editor manager handles all editor related tasks like opening - documents, the stack of currently open documents and the currently - active document. -*/ - /*! \fn ProgressManager *ICore::progressManager() \brief Returns the application's progress manager. @@ -133,13 +103,6 @@ show a progress bar the way Qt Creator does it. */ -/*! - \fn VariableManager *ICore::variableManager() - \obsolete - - Use \c VariableManager::variableManager() directly. -*/ - /*! \fn VcsManager *ICore::vcsManager() \brief Returns the application's vcs manager. @@ -151,13 +114,6 @@ the plugin manager's object pool. */ -/*! - \fn ModeManager *ICore::modeManager() - \obsolete - - Use \c ModeManager::modeManager() directly. -*/ - /*! \fn MimeDatabase *ICore::mimeDatabase() \brief Returns the application's mime database. @@ -165,13 +121,6 @@ Use the mime database to manage mime types. */ -/*! - \fn HelpManager *ICore::helpManager() - \brief Returns the application's help manager. - - Use the help manager to register documentation sets. -*/ - /*! \fn QSettings *ICore::settings(QSettings::Scope scope = QSettings::UserScope) \brief Returns the application's main settings object. diff --git a/src/plugins/coreplugin/icore.h b/src/plugins/coreplugin/icore.h index df29a1c0ed3..bd726ec0236 100644 --- a/src/plugins/coreplugin/icore.h +++ b/src/plugins/coreplugin/icore.h @@ -49,18 +49,11 @@ class AppMainWindow; namespace Core { class IWizard; -class ActionManager; class Context; -class EditorManager; -class DocumentManager; class IContext; -class MessageManager; class MimeDatabase; -class ModeManager; class ProgressManager; -class ScriptManager; class SettingsDatabase; -class VariableManager; class VcsManager; namespace Internal { class MainWindow; }