diff options
author | Roberto Raggi <roberto.raggi@nokia.com> | 2010-07-19 10:25:55 +0200 |
---|---|---|
committer | Roberto Raggi <roberto.raggi@nokia.com> | 2010-07-19 10:32:25 +0200 |
commit | 7de836bf851b144ead33a5aea685ed92b9e928ea (patch) | |
tree | f5ef2ab645f3d370cda21c2db488b01a8d505fee /src/plugins/cpptools/cppcodecompletion.h | |
parent | 615381a5b12449438cfd0f546e043f7a7d8c0609 (diff) | |
download | qt-creator-7de836bf851b144ead33a5aea685ed92b9e928ea.tar.gz |
Don't complete the current item when pressing special characters (e.g. `;') if the completion is automatically triggered.
Diffstat (limited to 'src/plugins/cpptools/cppcodecompletion.h')
-rw-r--r-- | src/plugins/cpptools/cppcodecompletion.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/cpptools/cppcodecompletion.h b/src/plugins/cpptools/cppcodecompletion.h index 15ac30ab4d..89753ce72e 100644 --- a/src/plugins/cpptools/cppcodecompletion.h +++ b/src/plugins/cpptools/cppcodecompletion.h @@ -147,7 +147,7 @@ private: int m_startPosition; // Position of the cursor from which completion started bool m_shouldRestartCompletion; - bool m_forcedCompletion; + bool m_automaticCompletion; unsigned m_completionOperator; bool m_objcEnabled; |