aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/cppeditor/editordocumenthandle.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/cppeditor/editordocumenthandle.h')
-rw-r--r--src/plugins/cppeditor/editordocumenthandle.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/plugins/cppeditor/editordocumenthandle.h b/src/plugins/cppeditor/editordocumenthandle.h
index 2e4384bede..fdb8da28f6 100644
--- a/src/plugins/cppeditor/editordocumenthandle.h
+++ b/src/plugins/cppeditor/editordocumenthandle.h
@@ -6,9 +6,10 @@
#include "cppeditor_global.h"
#include "senddocumenttracker.h"
-#include <QString>
+namespace Utils { class FilePath; }
namespace CppEditor {
+
class BaseEditorDocumentProcessor;
class CPPEDITOR_EXPORT CppEditorDocumentHandle
@@ -25,7 +26,7 @@ public:
void setRefreshReason(const RefreshReason &refreshReason);
// For the Working Copy
- virtual QString filePath() const = 0;
+ virtual Utils::FilePath filePath() const = 0;
virtual QByteArray contents() const = 0;
virtual unsigned revision() const = 0;
@@ -41,4 +42,4 @@ private:
RefreshReason m_refreshReason = None;
};
-} // namespace CppEditor
+} // CppEditor