summaryrefslogtreecommitdiff
path: root/src/plugins/qmljseditor
diff options
context:
space:
mode:
authorRoberto Raggi <roberto.raggi@nokia.com>2010-12-16 12:05:48 +0100
committerRoberto Raggi <roberto.raggi@nokia.com>2010-12-16 12:05:48 +0100
commitb4e421062fc9463cb42c5846dcb84b25f1a5f0ae (patch)
treee868953fda96eaa047b58156404a4b156c462ba6 /src/plugins/qmljseditor
parent63522a04e5291c96ab084e111497e2dacc05257b (diff)
downloadqt-creator-b4e421062fc9463cb42c5846dcb84b25f1a5f0ae.tar.gz
Removed stray tokens and fixed warnings/errors when compiling with pedantic C++ compilers.
Diffstat (limited to 'src/plugins/qmljseditor')
-rw-r--r--src/plugins/qmljseditor/qmljseditor.cpp2
-rw-r--r--src/plugins/qmljseditor/qmljsoutline.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/qmljseditor/qmljseditor.cpp b/src/plugins/qmljseditor/qmljseditor.cpp
index 33f754290f..fbd15669ca 100644
--- a/src/plugins/qmljseditor/qmljseditor.cpp
+++ b/src/plugins/qmljseditor/qmljseditor.cpp
@@ -87,7 +87,7 @@
enum {
UPDATE_DOCUMENT_DEFAULT_INTERVAL = 100,
UPDATE_USES_DEFAULT_INTERVAL = 150,
- UPDATE_OUTLINE_INTERVAL = 500, // msecs after new semantic info has been arrived / cursor has moved
+ UPDATE_OUTLINE_INTERVAL = 500 // msecs after new semantic info has been arrived / cursor has moved
};
using namespace QmlJS;
diff --git a/src/plugins/qmljseditor/qmljsoutline.h b/src/plugins/qmljseditor/qmljsoutline.h
index c54fc36b15..87430cb4dc 100644
--- a/src/plugins/qmljseditor/qmljsoutline.h
+++ b/src/plugins/qmljseditor/qmljsoutline.h
@@ -13,7 +13,7 @@ class IEditor;
namespace QmlJS {
class Editor;
-};
+}
namespace QmlJSEditor {
namespace Internal {