diff options
author | hjk <qtc-committer@nokia.com> | 2011-02-04 09:52:39 +0100 |
---|---|---|
committer | hjk <qtc-committer@nokia.com> | 2011-02-04 12:45:32 +0100 |
commit | 57eae3191e51c11449366a7e39803ef28cc8aff5 (patch) | |
tree | 7912b9663afe332bbd84779de25a331bea41dcc7 /src/plugins/qmljseditor | |
parent | d87ce08880fb1158e3c4560609142d0a2768ab38 (diff) | |
download | qt-creator-57eae3191e51c11449366a7e39803ef28cc8aff5.tar.gz |
s:// end of namespace :// namespace :g for consistency
We use the latter style everywhere else to signify the end of a namespace block.
Diffstat (limited to 'src/plugins/qmljseditor')
-rw-r--r-- | src/plugins/qmljseditor/qmljscodecompletion.cpp | 2 | ||||
-rw-r--r-- | src/plugins/qmljseditor/qmljscodecompletion.h | 4 | ||||
-rw-r--r-- | src/plugins/qmljseditor/qmljsfindreferences.h | 4 | ||||
-rw-r--r-- | src/plugins/qmljseditor/qmljshighlighter.h | 2 | ||||
-rw-r--r-- | src/plugins/qmljseditor/qmljsquickfix.h | 6 |
5 files changed, 9 insertions, 9 deletions
diff --git a/src/plugins/qmljseditor/qmljscodecompletion.cpp b/src/plugins/qmljseditor/qmljscodecompletion.cpp index dce84351c7..88a7c81206 100644 --- a/src/plugins/qmljseditor/qmljscodecompletion.cpp +++ b/src/plugins/qmljseditor/qmljscodecompletion.cpp @@ -485,7 +485,7 @@ void FunctionArgumentWidget::updateHintText() m_popupFrame->move(pos); } -} } // end of namespace QmlJSEditor::Internal +} } // namespace QmlJSEditor::Internal CodeCompletion::CodeCompletion(ModelManagerInterface *modelManager, QObject *parent) : TextEditor::ICompletionCollector(parent), diff --git a/src/plugins/qmljseditor/qmljscodecompletion.h b/src/plugins/qmljseditor/qmljscodecompletion.h index 248b083bc9..5e343cb1c2 100644 --- a/src/plugins/qmljseditor/qmljscodecompletion.h +++ b/src/plugins/qmljseditor/qmljscodecompletion.h @@ -108,7 +108,7 @@ private: }; -} // end of namespace Internal -} // end of namespace QmlJSEditor +} // namespace Internal +} // namespace QmlJSEditor #endif // QMLJSCODECOMPLETION_H diff --git a/src/plugins/qmljseditor/qmljsfindreferences.h b/src/plugins/qmljseditor/qmljsfindreferences.h index a98283f532..a2481e7c10 100644 --- a/src/plugins/qmljseditor/qmljsfindreferences.h +++ b/src/plugins/qmljseditor/qmljsfindreferences.h @@ -48,7 +48,7 @@ QT_FORWARD_DECLARE_CLASS(QTimer) namespace Find { class SearchResultWindow; struct SearchResultItem; -} // end of namespace Find +} // namespace Find namespace QmlJSEditor { @@ -96,6 +96,6 @@ private: QFutureWatcher<Usage> m_watcher; }; -} // end of namespace QmlJSEditor +} // namespace QmlJSEditor #endif // QMLJSFINDREFERENCES_H diff --git a/src/plugins/qmljseditor/qmljshighlighter.h b/src/plugins/qmljseditor/qmljshighlighter.h index ba8bd72f89..cf36ca9589 100644 --- a/src/plugins/qmljseditor/qmljshighlighter.h +++ b/src/plugins/qmljseditor/qmljshighlighter.h @@ -99,6 +99,6 @@ private: QTextCharFormat m_formats[NumFormats]; }; -} // end of namespace QmlJSEditor +} // namespace QmlJSEditor #endif // QSCRIPTSYNTAXHIGHLIGHTER_H diff --git a/src/plugins/qmljseditor/qmljsquickfix.h b/src/plugins/qmljseditor/qmljsquickfix.h index 6883e61a8b..77e8a500d0 100644 --- a/src/plugins/qmljseditor/qmljsquickfix.h +++ b/src/plugins/qmljseditor/qmljsquickfix.h @@ -53,7 +53,7 @@ namespace QmlJSEditor { namespace Internal { class QmlJSQuickFixCollector; -} // end of namespace Internal +} // namespace Internal /*! Specialized QuickFixState for QML/JavaScript quick-fixes. @@ -161,7 +161,7 @@ public: static void registerQuickFixes(ExtensionSystem::IPlugin *plugIn); }; -} // end of namespace Internal -} // end of namespace QmlJSEditor +} // namespace Internal +} // namespace QmlJSEditor #endif // QMLJSQUICKFIX_H |