let me describle this problem again.
here is the test codes.
#include <iostream>
using namespace std;
class pt
{
int x;
int y;
};
int main()
{
pt pp;
|
cout << "Hello world!" << endl;
return 0;
}
in the "|" position ,you type pp and the codecompletion showed (see the attachment above)
and you continue to type the char "." (notice the codecompletion still show) .
here the class pt's members is excepted to be show.but nothing show here.
so this patch can solve the problem.