forked from qt-creator/qt-creator
Qt4PM: Fix typo
Change-Id: Ib0eafa87bf2da194e09f11d367116a86a1df2f28 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
This commit is contained in:
committed by
Oswald Buddenhagen
parent
0672d873d0
commit
c1104a8c36
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user