aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/debugger/qml/qmllivetextpreview.h
diff options
context:
space:
mode:
authorOrgad Shaneh <orgad.shaneh@audiocodes.com>2014-02-11 21:55:42 +0200
committerhjk <hjk121@nokiamail.com>2014-02-12 09:30:37 +0100
commit7ed1576083ceb7a6587796c63510d0fe027a9aac (patch)
tree3056a9c4bef984e0dd02ef8826b4016df4e986e5 /src/plugins/debugger/qml/qmllivetextpreview.h
parent3f44590f4b894fc1fa479d748dd0587aaf6dea50 (diff)
Clean up single namespace forward-declarations
Done using the following ruby script: Dir.glob('**/*.h').each { |file| if File.file?(file) s = File.read(file) t = s.gsub(/^namespace .+ \{\n\s*class .*;\n\s*\}.*$/) { |m| m.gsub(/\n\s*/, ' ').gsub(/\s*\/\/.*$/, '') } if t != s puts file File.open(file, 'w').write(t) end end } Change-Id: Iffcb966e90eb8e1a625eccd5dd0b94f000ae368e Reviewed-by: hjk <hjk121@nokiamail.com>
Diffstat (limited to 'src/plugins/debugger/qml/qmllivetextpreview.h')
-rw-r--r--src/plugins/debugger/qml/qmllivetextpreview.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/plugins/debugger/qml/qmllivetextpreview.h b/src/plugins/debugger/qml/qmllivetextpreview.h
index e2cefed415..783a658578 100644
--- a/src/plugins/debugger/qml/qmllivetextpreview.h
+++ b/src/plugins/debugger/qml/qmllivetextpreview.h
@@ -33,13 +33,9 @@
#include <texteditor/basetexteditor.h>
#include <qmljs/qmljsdocument.h>
-namespace Core {
-class IEditor;
-}
+namespace Core { class IEditor; }
-namespace QmlJS {
-class ModelManagerInterface;
-}
+namespace QmlJS { class ModelManagerInterface; }
namespace Debugger {
namespace Internal {