forked from qt-creator/qt-creator
TextEditor: Consolidate document access functions.
There was document(), textDocument() and baseTextDocument(). Two should be enough... Change-Id: Id9e41c8d857c5cb3269a9fce5ab594d34448c982 Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
This commit is contained in:
@@ -465,7 +465,7 @@ void CppCodeStylePreferencesWidget::updatePreview()
|
||||
const TextEditor::TabSettings ts = cppCodeStylePreferences->currentTabSettings();
|
||||
QtStyleCodeFormatter formatter(ts, ccss);
|
||||
foreach (TextEditor::SnippetEditorWidget *preview, m_previews) {
|
||||
preview->baseTextDocument()->setTabSettings(ts);
|
||||
preview->textDocument()->setTabSettings(ts);
|
||||
preview->setCodeStyle(cppCodeStylePreferences);
|
||||
|
||||
QTextDocument *doc = preview->document();
|
||||
@@ -475,7 +475,7 @@ void CppCodeStylePreferencesWidget::updatePreview()
|
||||
QTextCursor tc = preview->textCursor();
|
||||
tc.beginEditBlock();
|
||||
while (block.isValid()) {
|
||||
preview->baseTextDocument()->indenter()->indentBlock(doc, block, QChar::Null, ts);
|
||||
preview->textDocument()->indenter()->indentBlock(doc, block, QChar::Null, ts);
|
||||
|
||||
block = block.next();
|
||||
}
|
||||
@@ -492,7 +492,7 @@ void CppCodeStylePreferencesWidget::decorateEditors(const TextEditor::FontSettin
|
||||
});
|
||||
|
||||
foreach (TextEditor::SnippetEditorWidget *editor, m_previews) {
|
||||
editor->baseTextDocument()->setFontSettings(fontSettings);
|
||||
editor->textDocument()->setFontSettings(fontSettings);
|
||||
if (provider)
|
||||
provider->decorateEditor(editor);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user