diff options
author | hjk <qtc-committer@nokia.com> | 2011-02-21 16:02:26 +0100 |
---|---|---|
committer | hjk <qtc-committer@nokia.com> | 2011-02-22 11:23:53 +0100 |
commit | f576ad9f2c169bfa4d336ba2b3b1918f03df6916 (patch) | |
tree | f9e708ea1972b10d5465c915e7b9d0f7572f671f /src/plugins/glsleditor/glslindenter.cpp | |
parent | e32cf192f7ba34dda96b61507b440c6a17b51a0c (diff) | |
download | qt-creator-f576ad9f2c169bfa4d336ba2b3b1918f03df6916.tar.gz |
texteditor: merge ITextEditable into ITextEditor
rename BastTextEditor->BaseTextEditorWidget, BaseTextEditorEditable->BaseTextEditor
rename BaseTextEditor{,Widget} subclasses
rename editableInterface->editorInterface
rename createEditableInterface->createEditor
minor cleanups after renamings
Diffstat (limited to 'src/plugins/glsleditor/glslindenter.cpp')
-rw-r--r-- | src/plugins/glsleditor/glslindenter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/glsleditor/glslindenter.cpp b/src/plugins/glsleditor/glslindenter.cpp index 7937be013d..c6bc2f537d 100644 --- a/src/plugins/glsleditor/glslindenter.cpp +++ b/src/plugins/glsleditor/glslindenter.cpp @@ -65,7 +65,7 @@ bool GLSLIndenter::isElectricCharacter(const QChar &ch) const void GLSLIndenter::indentBlock(QTextDocument *doc, const QTextBlock &block, const QChar &typedChar, - TextEditor::BaseTextEditor *editor) + TextEditor::BaseTextEditorWidget *editor) { Q_UNUSED(doc) @@ -93,7 +93,7 @@ void GLSLIndenter::indentBlock(QTextDocument *doc, void GLSLIndenter::indent(QTextDocument *doc, const QTextCursor &cursor, const QChar &typedChar, - TextEditor::BaseTextEditor *editor) + TextEditor::BaseTextEditorWidget *editor) { if (cursor.hasSelection()) { QTextBlock block = doc->findBlock(cursor.selectionStart()); |