diff options
author | Jarek Kobus <jaroslaw.kobus@nokia.com> | 2014-01-30 13:31:11 +0100 |
---|---|---|
committer | Jarek Kobus <jaroslaw.kobus@digia.com> | 2014-01-30 14:50:31 +0100 |
commit | 65087004de0c4a789112838670650f7fa7dc0107 (patch) | |
tree | 51028e1d1be1c938a51bebbccefb00163f0e8e86 /src/plugins/diffeditor/diffeditor.h | |
parent | e2972e8a824f4f3f7dd9ef0a09176c40891fba07 (diff) | |
download | qt-creator-65087004de0c4a789112838670650f7fa7dc0107.tar.gz |
Rename DiffEditorFile -> DiffEditorDocument
The old name had nothing to do with a file in fact.
The new name will be more appropriate for the new stuff,
which will come soon.
Change-Id: I17ad03dab5c643ff26e313a434ba86929a0f00c3
Reviewed-by: Eike Ziller <eike.ziller@digia.com>
Diffstat (limited to 'src/plugins/diffeditor/diffeditor.h')
-rw-r--r-- | src/plugins/diffeditor/diffeditor.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/diffeditor/diffeditor.h b/src/plugins/diffeditor/diffeditor.h index 1a89ceaa74..630bec1c50 100644 --- a/src/plugins/diffeditor/diffeditor.h +++ b/src/plugins/diffeditor/diffeditor.h @@ -45,7 +45,7 @@ namespace DiffEditor { class DiffEditorWidget; namespace Internal { -class DiffEditorFile; +class DiffEditorDocument; } class DIFFEDITOR_EXPORT DiffEditor : public Core::IEditor @@ -80,7 +80,7 @@ protected: private: void updateEntryToolTip(); - Internal::DiffEditorFile *m_file; + Internal::DiffEditorDocument *m_document; DiffEditorWidget *m_editorWidget; DiffEditorController *m_diffEditorController; QComboBox *m_entriesComboBox; |