QuickFix: Add comments to undocumented fixes.

Reviewed-by: Erik Verbruggen
This commit is contained in:
Christian Kamm
2011-01-07 14:49:00 +01:00
parent 542f21dcfb
commit 20aeec7305
2 changed files with 42 additions and 4 deletions

View File

@@ -52,6 +52,16 @@ using TextEditor::RefactoringChanges;
namespace {
/*
Reformats a one-line object into a multi-line one, i.e.
Item { x: 10; y: 20; width: 10 }
into
Item {
x: 10;
y: 20;
width: 10
}
*/
class SplitInitializerOp: public QmlJSQuickFixFactory
{
public: