Quickfix: Convert underscore notation to camel case.

Reviewed-by: Roberto Raggi
This commit is contained in:
ck
2010-07-20 11:02:37 +02:00
parent 89cc8993c9
commit 46f537e56a
8 changed files with 88 additions and 10 deletions

View File

@@ -660,7 +660,7 @@ void CPPEditor::hideRenameNotification()
Core::EditorManager::instance()->hideEditorInfoBar(QLatin1String("CppEditor.Rename"));
}
void CPPEditor::renameUsagesNow()
void CPPEditor::renameUsagesNow(const QString &replacement)
{
const SemanticInfo info = m_lastSemanticInfo;
@@ -674,7 +674,7 @@ void CPPEditor::renameUsagesNow()
this, SLOT(hideRenameNotification()));
}
m_modelManager->renameUsages(canonicalSymbol, cs.context());
m_modelManager->renameUsages(canonicalSymbol, cs.context(), replacement);
}
}
}