forked from qt-creator/qt-creator
Use internal namespace in VCSBase more consistently
Change-Id: I61de9796aaeb9484b44029c5f1d46e69834a04c3 Reviewed-by: Hugues Delorme <delorme.hugues@fougsys.fr>
This commit is contained in:
committed by
Hugues Delorme
parent
2327b395d0
commit
f696312368
@@ -38,8 +38,9 @@
|
||||
#include <texteditor/syntaxhighlighter.h>
|
||||
|
||||
namespace VCSBase {
|
||||
|
||||
struct BaseAnnotationHighlighterPrivate;
|
||||
namespace Internal {
|
||||
class BaseAnnotationHighlighterPrivate;
|
||||
} // namespace Internal
|
||||
|
||||
class VCSBASE_EXPORT BaseAnnotationHighlighter : public TextEditor::SyntaxHighlighter
|
||||
{
|
||||
@@ -59,7 +60,7 @@ private:
|
||||
// Implement this to return the change number of a line
|
||||
virtual QString changeNumber(const QString &block) const = 0;
|
||||
|
||||
BaseAnnotationHighlighterPrivate *d;
|
||||
Internal::BaseAnnotationHighlighterPrivate *const d;
|
||||
};
|
||||
|
||||
} // namespace VCSBase
|
||||
|
||||
Reference in New Issue
Block a user