summaryrefslogtreecommitdiff
path: root/src/plugins/cpptools/cpptoolseditorsupport.h
diff options
context:
space:
mode:
authorErik Verbruggen <erik.verbruggen@nokia.com>2012-02-20 12:39:08 +0100
committerErik Verbruggen <erik.verbruggen@nokia.com>2012-02-20 14:21:22 +0100
commit6fe6f5cdb14422a7125c476a5e631385daf0a655 (patch)
tree5d56148965097f8a874a69ea9974e70b3c3a804a /src/plugins/cpptools/cpptoolseditorsupport.h
parentd66acb51d0c8b511df9f679806cbd3d84cce41ef (diff)
downloadqt-creator-6fe6f5cdb14422a7125c476a5e631385daf0a655.tar.gz
C++: make highlighting/completion plugable.
Change-Id: I990fdf5411153041c6b4c62f31b453342d59de53 Reviewed-by: Eike Ziller <eike.ziller@nokia.com>
Diffstat (limited to 'src/plugins/cpptools/cpptoolseditorsupport.h')
-rw-r--r--src/plugins/cpptools/cpptoolseditorsupport.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/plugins/cpptools/cpptoolseditorsupport.h b/src/plugins/cpptools/cpptoolseditorsupport.h
index 065d3c5e1b..d8570f8fa2 100644
--- a/src/plugins/cpptools/cpptoolseditorsupport.h
+++ b/src/plugins/cpptools/cpptoolseditorsupport.h
@@ -57,10 +57,6 @@ namespace TextEditor {
} // namespace TextEditor
namespace CppTools {
-
-class CppCompletionSupport;
-class CppHighlightingSupport;
-
namespace Internal {
class CppModelManager;
@@ -82,9 +78,6 @@ public:
QString contents();
unsigned editorRevision() const;
- CppCompletionSupport *completionSupport() const;
- CppHighlightingSupport *highlightingSupport() const;
-
Q_SIGNALS:
void contentsChanged();
@@ -102,8 +95,6 @@ private:
QFuture<void> _documentParser;
QString _cachedContents;
unsigned _revision;
- QScopedPointer<CppCompletionSupport> m_completionSupport;
- QScopedPointer<CppHighlightingSupport> m_highlightingSupport;
};
} // namespace Internal