diff options
author | Thorbjørn Lindeijer <thorbjorn.lindeijer@nokia.com> | 2008-12-12 16:36:33 +0100 |
---|---|---|
committer | Thorbjørn Lindeijer <thorbjorn.lindeijer@nokia.com> | 2008-12-15 11:42:43 +0100 |
commit | 78f1fca9aa55311a84b6a4cbd6507b70398fff39 (patch) | |
tree | 62329c67f42f472fbee8a9ecb2e1963a3d01cde1 /src/plugins/cpptools/cpptoolsplugin.h | |
parent | 5c5167717f479ee5cccab179e0793620dc11a229 (diff) | |
download | qt-creator-78f1fca9aa55311a84b6a4cbd6507b70398fff39.tar.gz |
Added configuration options for code completion
It is now possible to choose between case-sensitive or case-insensitive
completion. Also, you can now disable the automatic insertion of braces.
Diffstat (limited to 'src/plugins/cpptools/cpptoolsplugin.h')
-rw-r--r-- | src/plugins/cpptools/cpptoolsplugin.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/plugins/cpptools/cpptoolsplugin.h b/src/plugins/cpptools/cpptoolsplugin.h index a64bfcf9dc..8760e6a66f 100644 --- a/src/plugins/cpptools/cpptoolsplugin.h +++ b/src/plugins/cpptools/cpptoolsplugin.h @@ -64,6 +64,7 @@ public: bool initialize(const QStringList &arguments, QString *error_message); void extensionsInitialized(); + void shutdown(); CppModelManager *cppModelManager() { return m_modelManager; } QString correspondingHeaderOrSource(const QString &fileName) const; @@ -77,6 +78,7 @@ private: Core::ICore *m_core; int m_context; CppModelManager *m_modelManager; + CppCodeCompletion *m_completion; static CppToolsPlugin *m_instance; }; |