diff options
author | Nikolai Kosjar <nikolai.kosjar@theqtcompany.com> | 2016-03-29 12:26:25 +0200 |
---|---|---|
committer | Nikolai Kosjar <nikolai.kosjar@theqtcompany.com> | 2016-03-31 06:51:34 +0000 |
commit | 4de62a7349a55776d81d21a73a567c731fc5cf9b (patch) | |
tree | 11e1bf488064f7b76e37304f758cfe16aa8fad03 /src/plugins/cpptools/cpptoolsplugin.h | |
parent | 9905eb6f7537e81784758171d61501d0496a33d7 (diff) | |
download | qt-creator-4de62a7349a55776d81d21a73a567c731fc5cf9b.tar.gz |
C++: Fix completion for doxygen tags I
There are three cases that must be handled:
1. Completion in C++ style comment
2. Completion in first line of a C style comment
3. Completion in non-first line of a C style comment
This change fixes case 1 + 2. Case 3 will be addressed in a follow-up
change, same goes for the duplication.
Task-number: QTCREATORBUG-15143
Change-Id: I449711f965ddcbbe6158870a8a5ae33218e0d238
Reviewed-by: David Schulz <david.schulz@theqtcompany.com>
Diffstat (limited to 'src/plugins/cpptools/cpptoolsplugin.h')
-rw-r--r-- | src/plugins/cpptools/cpptoolsplugin.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/plugins/cpptools/cpptoolsplugin.h b/src/plugins/cpptools/cpptoolsplugin.h index b0f86095d1..46c2a0622f 100644 --- a/src/plugins/cpptools/cpptoolsplugin.h +++ b/src/plugins/cpptools/cpptoolsplugin.h @@ -109,6 +109,9 @@ private slots: void test_global_completion_data(); void test_global_completion(); + void test_doxygen_tag_completion_data(); + void test_doxygen_tag_completion(); + void test_completion_member_access_operator_data(); void test_completion_member_access_operator(); |