forked from qt-creator/qt-creator
Rename {Core,TextEditor},{Base,}TextDocument classes
First step of some more 'Base' removal in TextEditor. s/Core::TextDocument/Core::BaseTextDocument/ s/TextEditor::BaseTextDocument/TextEditor::TextDocument/ Change-Id: I71ba325a2f0ad72ec9dae0d96846cbae72d326f7 Reviewed-by: hjk <hjk121@nokiamail.com>
This commit is contained in:
@@ -67,7 +67,7 @@ public:
|
||||
typedef std::function<QFuture<TextEditor::HighlightingResult> ()> HighlightingRunner;
|
||||
|
||||
public:
|
||||
explicit SemanticHighlighter(TextEditor::BaseTextDocument *baseTextDocument);
|
||||
explicit SemanticHighlighter(TextEditor::TextDocument *baseTextDocument);
|
||||
~SemanticHighlighter();
|
||||
|
||||
void setHighlightingRunner(HighlightingRunner highlightingRunner);
|
||||
@@ -88,7 +88,7 @@ private:
|
||||
void updateFormatMapFromFontSettings();
|
||||
|
||||
private:
|
||||
TextEditor::BaseTextDocument *m_baseTextDocument;
|
||||
TextEditor::TextDocument *m_baseTextDocument;
|
||||
|
||||
unsigned m_revision;
|
||||
QScopedPointer<QFutureWatcher<TextEditor::HighlightingResult>> m_watcher;
|
||||
|
||||
Reference in New Issue
Block a user