summaryrefslogtreecommitdiff
path: root/src/plugins/cpptools/cpptoolsplugin.cpp
diff options
context:
space:
mode:
authorcon <qtc-committer@nokia.com>2009-01-14 13:17:53 +0100
committercon <qtc-committer@nokia.com>2009-01-14 13:18:25 +0100
commitfbfcc9a4845c11d9b681dab8920ef15cb6c75782 (patch)
tree7f64503b79c93bf91eb48e01738feee3a5f4426a /src/plugins/cpptools/cpptoolsplugin.cpp
parentd9f97aa179d3441943ee7e258333bf228fa67a5d (diff)
downloadqt-creator-fbfcc9a4845c11d9b681dab8920ef15cb6c75782.tar.gz
Fixes: - ICommand --> Command
Details: - Naming convention
Diffstat (limited to 'src/plugins/cpptools/cpptoolsplugin.cpp')
-rw-r--r--src/plugins/cpptools/cpptoolsplugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/cpptools/cpptoolsplugin.cpp b/src/plugins/cpptools/cpptoolsplugin.cpp
index d6659cc885..5ec67bf4a3 100644
--- a/src/plugins/cpptools/cpptoolsplugin.cpp
+++ b/src/plugins/cpptools/cpptoolsplugin.cpp
@@ -108,7 +108,7 @@ bool CppToolsPlugin::initialize(const QStringList & /*arguments*/, QString *)
QList<int> context = QList<int>() << m_context;
QAction *switchAction = new QAction(tr("Switch Header/Source"), this);
- Core::ICommand *command = am->registerAction(switchAction, Constants::SWITCH_HEADER_SOURCE, context);
+ Core::Command *command = am->registerAction(switchAction, Constants::SWITCH_HEADER_SOURCE, context);
command->setDefaultKeySequence(QKeySequence(Qt::Key_F4));
mcpptools->addAction(command);
connect(switchAction, SIGNAL(triggered()), this, SLOT(switchHeaderSource()));