diff options
author | Przemyslaw Gorszkowski <pgorszkowski@gmail.com> | 2012-12-07 14:31:32 +0100 |
---|---|---|
committer | hjk <qthjk@ovi.com> | 2012-12-20 10:46:44 +0100 |
commit | b1199ef0ccee33b34b0c95d4bbac153bbf2a5be2 (patch) | |
tree | 309907a8160fc2a7dce42a954f34f7a6b8375b2e /src/plugins/cpptools/cpptoolsplugin.h | |
parent | 17748280e8557bb8ef02231b01af613186f083b8 (diff) | |
download | qt-creator-b1199ef0ccee33b34b0c95d4bbac153bbf2a5be2.tar.gz |
C++: Fix code completion for nested classes
Fix code completion for nested classes when enclosing is
template class.
Unit tests
Task-number: QTCREATORBUG-8245 (only standalone)
Change-Id: Ib31ad4b799db927b56debd4dc3e7403404c1839d
Reviewed-by: hjk <qthjk@ovi.com>
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 b56ee4aa0d..29f119db76 100644 --- a/src/plugins/cpptools/cpptoolsplugin.h +++ b/src/plugins/cpptools/cpptoolsplugin.h @@ -110,6 +110,8 @@ private slots: void test_completion_cyclic_inheritance_data(); void test_completion_enclosing_template_class(); void test_completion_enclosing_template_class_data(); + void test_completion_instantiate_nested_class_when_enclosing_is_template(); + void test_completion_instantiate_nested_of_nested_class_when_enclosing_is_template(); private: void test_completion(); |