Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Tobias Hunger
qt-creator
Commits
b50ba6a2
Commit
b50ba6a2
authored
Jun 29, 2010
by
hjk
Browse files
Core::Context: fix documentation, remove an unused variable
parent
2b1d8f74
Changes
3
Hide whitespace changes
Inline
Side-by-side
src/plugins/coreplugin/actionmanager/actionmanager.cpp
View file @
b50ba6a2
...
...
@@ -161,7 +161,7 @@ namespace {
*/
/*!
\fn Command *ActionManager::registerAction(QAction *action, const QString &id, const
QList<int>
&context)
\fn Command *ActionManager::registerAction(QAction *action, const QString &id, const
Core::Context
&context)
\brief Makes an \a action known to the system under the specified string \a id.
Returns a command object that represents the action in the application and is
...
...
@@ -172,7 +172,7 @@ namespace {
*/
/*!
\fn Command *ActionManager::registerShortcut(QShortcut *shortcut, const QString &id, const
QList<int>
&context)
\fn Command *ActionManager::registerShortcut(QShortcut *shortcut, const QString &id, const
Core::Context
&context)
\brief Makes a \a shortcut known to the system under the specified string \a id.
Returns a command object that represents the shortcut in the application and is
...
...
src/plugins/coreplugin/icore.cpp
View file @
b50ba6a2
...
...
@@ -249,7 +249,7 @@
*/
/*!
\fn void ICore::updateAdditionalContexts(const
QList<int>
&remove, const
QList<int>
&add)
\fn void ICore::updateAdditionalContexts(const
Core::Context
&remove, const
Core::Context
&add)
\brief Change the currently active additional contexts.
Removes the list of additional contexts specified by \a remove and adds the
...
...
@@ -340,7 +340,7 @@
*/
/*!
\fn void ICore::contextChanged(Core::IContext *context, const
QList<int>
&additionalContexts)
\fn void ICore::contextChanged(Core::IContext *context, const
Core::Context
&additionalContexts)
\brief Sent just after a new \a context became the current context
(meaning that its widget got focus), or if the additional context ids changed.
*/
src/plugins/cppeditor/cppeditor.h
View file @
b50ba6a2
...
...
@@ -292,7 +292,6 @@ private:
CppTools
::
CppModelManagerInterface
*
m_modelManager
;
QList
<
int
>
m_contexts
;
QComboBox
*
m_methodCombo
;
CPlusPlus
::
OverviewModel
*
m_overviewModel
;
QSortFilterProxyModel
*
m_proxyModel
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment