Skip to content
Snippets Groups Projects
Commit c1104a8c authored by Orgad Shaneh's avatar Orgad Shaneh Committed by Oswald Buddenhagen
Browse files

Qt4PM: Fix typo


Change-Id: Ib0eafa87bf2da194e09f11d367116a86a1df2f28
Reviewed-by: default avatarOswald Buddenhagen <oswald.buddenhagen@nokia.com>
parent 0672d873
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment