Skip to content
Snippets Groups Projects
Commit 97896090 authored by Robert Loehning's avatar Robert Loehning
Browse files

Compile fix for Windows


Task-number: QTCREATORBUG-8209
Change-Id: I2ae88b5fc8ad5b4de7c9dc2eacb4eaf5d6f4fe2b
Reviewed-by: default avatarErik Verbruggen <erik.verbruggen@digia.com>
parent dd6307ea
No related branches found
No related tags found
No related merge requests found
......@@ -45,7 +45,6 @@ using namespace QmlJS::AST;
using namespace QmlJSEditor;
using namespace QmlJSEditor::Internal;
using namespace QmlJSTools;
using namespace TextEditor;
using TextEditor::RefactoringChanges;
QmlJSQuickFixOperation::QmlJSQuickFixOperation(const QmlJSQuickFixInterface &interface,
......
......@@ -94,7 +94,7 @@ protected:
Implement this method to match and create the appropriate
QmlJSQuickFixOperation objects.
*/
virtual void match(const QmlJSQuickFixInterface &interface, QuickFixOperations &result) = 0;
virtual void match(const QmlJSQuickFixInterface &interface, TextEditor::QuickFixOperations &result) = 0;
};
} // namespace QmlJSEditor
......
......@@ -45,7 +45,6 @@ using namespace QmlJS::AST;
using namespace QmlJSEditor;
using namespace QmlJSEditor::Internal;
using namespace QmlJSTools;
using namespace TextEditor;
using TextEditor::RefactoringChanges;
namespace {
......@@ -80,7 +79,7 @@ class SplitInitializerOp: public QmlJSQuickFixFactory
}
if (objectInitializer)
result.append(QuickFixOperation::Ptr(new Operation(interface, objectInitializer)));
result.append(TextEditor::QuickFixOperation::Ptr(new Operation(interface, objectInitializer)));
}
class Operation: public QmlJSQuickFixOperation
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment