summaryrefslogtreecommitdiff
path: root/src/plugins/cpptools/editordocumenthandle.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/cpptools/editordocumenthandle.cpp')
-rw-r--r--src/plugins/cpptools/editordocumenthandle.cpp8
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;
}