logic: fixed warnings, tests and bugs
* fixed clang warnings * fixed cxxparser tests * added missing checks for valid location in ASTVisitor callbacks for templates * removed warning when statusbar view is removed * made font of activated classes bold * fixed search box not responding to autocompletion tab or enter press * fixed search box not updated when active token changes
This commit is contained in:
@@ -1057,7 +1057,7 @@ public:
|
||||
" T foo;\n"
|
||||
"};\n"
|
||||
"\n"
|
||||
"A<int> a\n"
|
||||
"A<int> a;\n"
|
||||
);
|
||||
|
||||
TS_ASSERT_EQUALS(client->templateSpecializations.size(), 1);
|
||||
@@ -1122,9 +1122,9 @@ public:
|
||||
"template <typename T>\n"
|
||||
"class A\n"
|
||||
"{\n"
|
||||
" Enum TestType\n"
|
||||
" enum TestType\n"
|
||||
" {\n"
|
||||
" TEST_ONE\n"
|
||||
" TEST_ONE,\n"
|
||||
" TEST_TWO\n"
|
||||
" };\n"
|
||||
"};\n"
|
||||
@@ -1140,7 +1140,7 @@ public:
|
||||
"template <typename T>\n"
|
||||
"class A\n"
|
||||
"{\n"
|
||||
" Enum TestType\n"
|
||||
" enum TestType\n"
|
||||
" {\n"
|
||||
" TEST_ONE,\n"
|
||||
" TEST_TWO\n"
|
||||
@@ -1159,7 +1159,7 @@ public:
|
||||
"template <typename T>\n"
|
||||
"class A\n"
|
||||
"{\n"
|
||||
" Enum TestType\n"
|
||||
" enum TestType\n"
|
||||
" {\n"
|
||||
" TEST_ONE,\n"
|
||||
" TEST_TWO\n"
|
||||
|
||||
Reference in New Issue
Block a user