Qt4PM: Fix typo

Change-Id: Ib0eafa87bf2da194e09f11d367116a86a1df2f28
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
This commit is contained in:
Orgad Shaneh
2012-04-30 22:26:20 +03:00
committed by Oswald Buddenhagen
parent 0672d873d0
commit c1104a8c36
2 changed files with 5 additions and 5 deletions

View File

@@ -389,20 +389,20 @@ void Qt4Manager::runQMake(ProjectExplorer::Project *p, ProjectExplorer::Node *no
void Qt4Manager::buildSubDirContextMenu() void Qt4Manager::buildSubDirContextMenu()
{ {
handleSubDirContexMenu(BUILD); handleSubDirContextMenu(BUILD);
} }
void Qt4Manager::cleanSubDirContextMenu() void Qt4Manager::cleanSubDirContextMenu()
{ {
handleSubDirContexMenu(CLEAN); handleSubDirContextMenu(CLEAN);
} }
void Qt4Manager::rebuildSubDirContextMenu() void Qt4Manager::rebuildSubDirContextMenu()
{ {
handleSubDirContexMenu(REBUILD); handleSubDirContextMenu(REBUILD);
} }
void Qt4Manager::handleSubDirContexMenu(Qt4Manager::Action action) void Qt4Manager::handleSubDirContextMenu(Qt4Manager::Action action)
{ {
Qt4Project *qt4pro = qobject_cast<Qt4Project *>(m_contextProject); Qt4Project *qt4pro = qobject_cast<Qt4Project *>(m_contextProject);
QTC_ASSERT(qt4pro, return); QTC_ASSERT(qt4pro, return);

View File

@@ -129,7 +129,7 @@ private slots:
private: private:
QList<Qt4Project *> m_projects; QList<Qt4Project *> m_projects;
void handleSubDirContexMenu(Action action); void handleSubDirContextMenu(Action action);
void addLibrary(const QString &fileName, Internal::ProFileEditorWidget *editor = 0); void addLibrary(const QString &fileName, Internal::ProFileEditorWidget *editor = 0);
void runQMake(ProjectExplorer::Project *p, ProjectExplorer::Node *node); void runQMake(ProjectExplorer::Project *p, ProjectExplorer::Node *node);