diff options
author | Nikolai Kosjar <nikolai.kosjar@theqtcompany.com> | 2014-11-24 11:19:41 +0100 |
---|---|---|
committer | Nikolai Kosjar <nikolai.kosjar@theqtcompany.com> | 2015-01-14 12:33:15 +0100 |
commit | 4d3d0e02903e28388937cb602b6e2255feef0385 (patch) | |
tree | 43f8340413fdc057c20d17b3de38810e2791777c /src/plugins/cpptools/editordocumenthandle.cpp | |
parent | 845cb2e432c73712d27a96dc3765a539b13a195f (diff) | |
download | qt-creator-4d3d0e02903e28388937cb602b6e2255feef0385.tar.gz |
CppTools: Rename EditorDocumentHandle to CppEditorDocumentHandle
...and related functions. For clarity in client code.
Change-Id: Icad6fc7b1eee2ce46a2eba8435359837a23409c8
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
Reviewed-by: Erik Verbruggen <erik.verbruggen@theqtcompany.com>
Diffstat (limited to 'src/plugins/cpptools/editordocumenthandle.cpp')
-rw-r--r-- | src/plugins/cpptools/editordocumenthandle.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/cpptools/editordocumenthandle.cpp b/src/plugins/cpptools/editordocumenthandle.cpp index 9e40aca5b2..b4be2d12ad 100644 --- a/src/plugins/cpptools/editordocumenthandle.cpp +++ b/src/plugins/cpptools/editordocumenthandle.cpp @@ -39,21 +39,21 @@ namespace CppTools { C++ editor document. */ -EditorDocumentHandle::EditorDocumentHandle() +CppEditorDocumentHandle::CppEditorDocumentHandle() : m_needsRefresh(false) { } -EditorDocumentHandle::~EditorDocumentHandle() +CppEditorDocumentHandle::~CppEditorDocumentHandle() { } -bool EditorDocumentHandle::needsRefresh() const +bool CppEditorDocumentHandle::needsRefresh() const { return m_needsRefresh; } -void EditorDocumentHandle::setNeedsRefresh(bool needsRefresh) +void CppEditorDocumentHandle::setNeedsRefresh(bool needsRefresh) { m_needsRefresh = needsRefresh; } |