summaryrefslogtreecommitdiffstats
path: root/WebCore/editing/ModifySelectionListLevel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/editing/ModifySelectionListLevel.cpp')
-rw-r--r--WebCore/editing/ModifySelectionListLevel.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/WebCore/editing/ModifySelectionListLevel.cpp b/WebCore/editing/ModifySelectionListLevel.cpp
index 9a7e105..3e6754e 100644
--- a/WebCore/editing/ModifySelectionListLevel.cpp
+++ b/WebCore/editing/ModifySelectionListLevel.cpp
@@ -209,28 +209,28 @@ bool IncreaseSelectionListLevelCommand::canIncreaseSelectionListLevel(Document*
return canIncreaseListLevel(document->frame()->selection()->selection(), startListChild, endListChild);
}
-PassRefPtr<Node> IncreaseSelectionListLevelCommand::increaseSelectionListLevelWithType(Document* document, Type listType)
+PassRefPtr<Node> IncreaseSelectionListLevelCommand::increaseSelectionListLevel(Document* document, Type type)
{
ASSERT(document);
ASSERT(document->frame());
- RefPtr<IncreaseSelectionListLevelCommand> modCommand = new IncreaseSelectionListLevelCommand(document, listType);
- modCommand->apply();
- return modCommand->m_listElement;
+ RefPtr<IncreaseSelectionListLevelCommand> command = create(document, type);
+ command->apply();
+ return command->m_listElement.release();
}
PassRefPtr<Node> IncreaseSelectionListLevelCommand::increaseSelectionListLevel(Document* document)
{
- return increaseSelectionListLevelWithType(document, InheritedListType);
+ return increaseSelectionListLevel(document, InheritedListType);
}
PassRefPtr<Node> IncreaseSelectionListLevelCommand::increaseSelectionListLevelOrdered(Document* document)
{
- return increaseSelectionListLevelWithType(document, OrderedList);
+ return increaseSelectionListLevel(document, OrderedList);
}
PassRefPtr<Node> IncreaseSelectionListLevelCommand::increaseSelectionListLevelUnordered(Document* document)
{
- return increaseSelectionListLevelWithType(document, UnorderedList);
+ return increaseSelectionListLevel(document, UnorderedList);
}
DecreaseSelectionListLevelCommand::DecreaseSelectionListLevelCommand(Document* document)
@@ -289,7 +289,7 @@ void DecreaseSelectionListLevelCommand::decreaseSelectionListLevel(Document* doc
{
ASSERT(document);
ASSERT(document->frame());
- applyCommand(new DecreaseSelectionListLevelCommand(document));
+ applyCommand(create(document));
}
}