aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qmljseditor/qmljsquickfix.cpp
diff options
context:
space:
mode:
authorhjk <hjk121@nokiamail.com>2013-06-03 19:31:32 +0200
committerhjk <hjk121@nokiamail.com>2013-06-07 16:20:38 +0200
commit67c3fed2c048c9b6841994fd723ee85eb97d94cb (patch)
tree9ed9082226c5b50521c2301b037c386482bedfdf /src/plugins/qmljseditor/qmljsquickfix.cpp
parente40308ab1b89346e3f7072f160b2cb5b799f8789 (diff)
QmlJSEditor: Rename QmlJSEditorEditable into QmlJSEditor
Change-Id: I710817ffd7bdf87aa6c0fed0f1f3cd4ea842fd01 Reviewed-by: Eike Ziller <eike.ziller@digia.com>
Diffstat (limited to 'src/plugins/qmljseditor/qmljsquickfix.cpp')
-rw-r--r--src/plugins/qmljseditor/qmljsquickfix.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/plugins/qmljseditor/qmljsquickfix.cpp b/src/plugins/qmljseditor/qmljsquickfix.cpp
index e1ece15032..12828c7325 100644
--- a/src/plugins/qmljseditor/qmljsquickfix.cpp
+++ b/src/plugins/qmljseditor/qmljsquickfix.cpp
@@ -42,11 +42,13 @@
using namespace QmlJS;
using namespace QmlJS::AST;
-using namespace QmlJSEditor;
-using namespace QmlJSEditor::Internal;
using namespace QmlJSTools;
using TextEditor::RefactoringChanges;
+namespace QmlJSEditor {
+
+using namespace Internal;
+
QmlJSQuickFixOperation::QmlJSQuickFixOperation(const QmlJSQuickFixInterface &interface,
int priority)
: QuickFixOperation(priority)
@@ -79,3 +81,5 @@ void QmlJSQuickFixFactory::matchingOperations(const QuickFixInterface &interface
{
match(interface.staticCast<const QmlJSQuickFixAssistInterface>(), result);
}
+
+} // namespace QmlJSEditor