summaryrefslogtreecommitdiff
path: root/src/plugins/texteditor/plaintexteditor.h
diff options
context:
space:
mode:
authorcon <qtc-committer@nokia.com>2009-06-04 12:02:19 +0200
committercon <qtc-committer@nokia.com>2009-06-04 12:08:49 +0200
commit4b9a3d5a4686ea9d5c3af962a54d4e4278fd9f7e (patch)
tree4603dd0bbe948d4b1134e3a7d2b6a3c30aa6d64b /src/plugins/texteditor/plaintexteditor.h
parente54bf750d9e7d18135c5aafd5a404e670665e804 (diff)
downloadqt-creator-4b9a3d5a4686ea9d5c3af962a54d4e4278fd9f7e.tar.gz
API: temporaryEditor --> isTemporary
Reviewed-by: Daniel Molkentin <daniel.molkentin@nokia.com>
Diffstat (limited to 'src/plugins/texteditor/plaintexteditor.h')
-rw-r--r--src/plugins/texteditor/plaintexteditor.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/texteditor/plaintexteditor.h b/src/plugins/texteditor/plaintexteditor.h
index 630c487eae..7b18ce7712 100644
--- a/src/plugins/texteditor/plaintexteditor.h
+++ b/src/plugins/texteditor/plaintexteditor.h
@@ -47,7 +47,7 @@ public:
bool duplicateSupported() const { return true; }
Core::IEditor *duplicate(QWidget *parent);
const char *kind() const;
- bool temporaryEditor() const { return false; }
+ bool isTemporary() const { return false; }
private:
QList<int> m_context;
};