Which IDE and version of VA are you using? If you are using VS2010 or above the underlining will be coming from the IDE, and have nothing to do with VA.
I have constructed some simple test code from your screen shot, and it does not have any problems. Can you please try adding this code to your solution and see what happens. This code goes in a header file:
struct testFelineDataSet
{
std::string devName;
std::string ldinst;
std::string dataSetName;
int checkType;
};
and this code goes in the matching cpp file:
static void testFelineGeneralCode()
{
QVector<const testFelineDataSet*> felineVecEqual;
felineVecEqual[0]->checkType;
}
I have tested with VS2008, VA 2001, running under Windows 7 64bit.