diff --git a/src/plugins/qt4projectmanager/qt4projectmanager.cpp b/src/plugins/qt4projectmanager/qt4projectmanager.cpp
index 7525379736a07fe313939124df823e89cadd5964..7c0f0855512804988187c6de23d5da04b5df0dd2 100644
--- a/src/plugins/qt4projectmanager/qt4projectmanager.cpp
+++ b/src/plugins/qt4projectmanager/qt4projectmanager.cpp
@@ -389,20 +389,20 @@ void Qt4Manager::runQMake(ProjectExplorer::Project *p, ProjectExplorer::Node *no
 
 void Qt4Manager::buildSubDirContextMenu()
 {
-    handleSubDirContexMenu(BUILD);
+    handleSubDirContextMenu(BUILD);
 }
 
 void Qt4Manager::cleanSubDirContextMenu()
 {
-    handleSubDirContexMenu(CLEAN);
+    handleSubDirContextMenu(CLEAN);
 }
 
 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);
     QTC_ASSERT(qt4pro, return);
diff --git a/src/plugins/qt4projectmanager/qt4projectmanager.h b/src/plugins/qt4projectmanager/qt4projectmanager.h
index 21cefe136a99e365aa38addb01fea1ab02d80313..f1e6ba1e0499857c74fcd63581bb5effcba14761 100644
--- a/src/plugins/qt4projectmanager/qt4projectmanager.h
+++ b/src/plugins/qt4projectmanager/qt4projectmanager.h
@@ -129,7 +129,7 @@ private slots:
 
 private:
     QList<Qt4Project *> m_projects;
-    void handleSubDirContexMenu(Action action);
+    void handleSubDirContextMenu(Action action);
     void addLibrary(const QString &fileName, Internal::ProFileEditorWidget *editor = 0);
     void runQMake(ProjectExplorer::Project *p, ProjectExplorer::Node *node);