aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/cppeditor/cppeditorplugin.h
diff options
context:
space:
mode:
authorLeander Schulten <Leander.Schulten@rwth-aachen.de>2020-10-09 15:08:05 +0200
committerLeander Schulten <Leander.Schulten@rwth-aachen.de>2020-10-12 14:34:54 +0000
commit15f39cf37c490a1cad6a67919e0a3734dcbdaf26 (patch)
tree9e86bbaad759bcd877b68c56e03e88d01c55f848 /src/plugins/cppeditor/cppeditorplugin.h
parent7ec2fd482ed9a1385b68e1efd9cfd7c6a889eb80 (diff)
CppEditor: Fix Typedef Handling with 'Remove Using Directive' QuickFix
Previously, typedefs were ignored and the new code became invalid after applying the quickfix. Change-Id: I0d4295e90d02dfacc3edac5ac3f96d9edbeaf662 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'src/plugins/cppeditor/cppeditorplugin.h')
-rw-r--r--src/plugins/cppeditor/cppeditorplugin.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/plugins/cppeditor/cppeditorplugin.h b/src/plugins/cppeditor/cppeditorplugin.h
index ecb8694efe..869bc68bb5 100644
--- a/src/plugins/cppeditor/cppeditorplugin.h
+++ b/src/plugins/cppeditor/cppeditorplugin.h
@@ -213,6 +213,8 @@ private slots:
void test_quickfix_removeUsingNamespace_data();
void test_quickfix_removeUsingNamespace();
+ void test_quickfix_removeUsingNamespace_simple_data();
+ void test_quickfix_removeUsingNamespace_simple();
void test_quickfix_removeUsingNamespace_differentSymbols();
void test_quickfix_InsertVirtualMethods_data();