Sitting in a cpp file, I have just done the following test:
void simpleTestAtFileScope()
{
QWORD qwFileScope = ::GetTickCount64(); // worked on "::gtc"
}
class ClassScopeTesting
{
void simpleClassScopeTesting()
{
QWORD qwClassScope = ::GetTickCount64(); // worked on "::gtc"
}
};
namespace SPACE_SCOPE_TESTING
{
void simpleNamespaceScopeTesting()
{
QWORD qwNamespaceFuncScope = ::GetTickCount64(); // worked on "::gtc"
}
class SpaceClassScopeTesting
{
void simpleSpaceClassTesting()
{
QWORD qwSpaceClassTesting = ::GetTickCount64(); // worked on "::gtc"
}
};
}
as the comments indicate, the listbox filtered to the correct item in each of these cases. Can you try this in a new file in your current solution?
I am starting to think this is either solution or file specific, since from the description I should be able to reproduce this by now.