Rename applyChangeSet() to apply()

This commit is contained in:
Roberto Raggi
2009-11-25 12:28:22 +01:00
parent 83b5f43198
commit efdd8ceaa0
2 changed files with 3 additions and 3 deletions

View File

@@ -760,7 +760,7 @@ QString QuickFixOperation::textOf(AST *ast) const
return textOf(startOf(ast), endOf(ast));
}
void QuickFixOperation::applyChangeSet()
void QuickFixOperation::apply()
{
Range range;
@@ -880,7 +880,7 @@ void CPPQuickFixCollector::perform(QuickFixOperationPtr op)
{
op->setTextCursor(_editor->textCursor());
op->createChangeSet();
op->applyChangeSet();
op->apply();
}
void CPPQuickFixCollector::cleanup()