diff options
author | hjk <qtc-commiter@nokia.com> | 2008-12-02 16:19:05 +0100 |
---|---|---|
committer | hjk <qtc-commiter@nokia.com> | 2008-12-02 16:19:05 +0100 |
commit | cf11b696431d26920f54598c8f03f0a5cf822ffa (patch) | |
tree | 9387102d435481132b721fde8ca062c5b8a4f73f /src/plugins/subversion/annotationhighlighter.cpp | |
parent | 10e963fb6134b3974901707daa99f5a94d696bed (diff) | |
download | qt-creator-cf11b696431d26920f54598c8f03f0a5cf822ffa.tar.gz |
more code cosmetics
Diffstat (limited to 'src/plugins/subversion/annotationhighlighter.cpp')
-rw-r--r-- | src/plugins/subversion/annotationhighlighter.cpp | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/plugins/subversion/annotationhighlighter.cpp b/src/plugins/subversion/annotationhighlighter.cpp index 1df4a259a2..d8ec2f5932 100644 --- a/src/plugins/subversion/annotationhighlighter.cpp +++ b/src/plugins/subversion/annotationhighlighter.cpp @@ -30,10 +30,11 @@ ** version 1.2, included in the file GPL_EXCEPTION.txt in this package. ** ***************************************************************************/ + #include "annotationhighlighter.h" -namespace Subversion { -namespace Internal { +using namespace Subversion; +using namespace Subversion::Internal; SubversionAnnotationHighlighter::SubversionAnnotationHighlighter(const ChangeNumbers &changeNumbers, QTextDocument *document) : @@ -47,6 +48,3 @@ QString SubversionAnnotationHighlighter::changeNumber(const QString &block) cons const int pos = block.indexOf(m_blank); return pos > 1 ? block.left(pos) : QString(); } - -} -} |