diff options
author | Orgad Shaneh <[email protected]> | 2014-02-11 21:55:42 +0200 |
---|---|---|
committer | hjk <[email protected]> | 2014-02-12 09:30:37 +0100 |
commit | 7ed1576083ceb7a6587796c63510d0fe027a9aac (patch) | |
tree | 3056a9c4bef984e0dd02ef8826b4016df4e986e5 /src/plugins/qmlprojectmanager/qmlprojectrunconfiguration.h | |
parent | 3f44590f4b894fc1fa479d748dd0587aaf6dea50 (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 <[email protected]>
Diffstat (limited to 'src/plugins/qmlprojectmanager/qmlprojectrunconfiguration.h')
-rw-r--r-- | src/plugins/qmlprojectmanager/qmlprojectrunconfiguration.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/plugins/qmlprojectmanager/qmlprojectrunconfiguration.h b/src/plugins/qmlprojectmanager/qmlprojectrunconfiguration.h index 7968e59c499..f2530d3221a 100644 --- a/src/plugins/qmlprojectmanager/qmlprojectrunconfiguration.h +++ b/src/plugins/qmlprojectmanager/qmlprojectrunconfiguration.h @@ -38,9 +38,7 @@ QT_FORWARD_DECLARE_CLASS(QStringListModel) -namespace Core { - class IEditor; -} +namespace Core { class IEditor; } namespace QtSupport { class BaseQtVersion; } |