Probably this has been reported already (is anyone else's head swimming?), but the Definition listbox for this line of code (in my InitInstance() method) shows the wrong definition:
m_pMainWnd->UpdateWindow();
When I put the caret on the m_pMainWnd part, the Definition window correctly displays CWnd* m_pMainWnd. But when I put the caret on the UpdateWindow part, it incorrectly shows the Win32 API call:
WINUSERAPI BOOL WINAPI UpdateWindow ( IN HWND hWnd)
In fact, it doesn't even display the correct CWnd::UpdateWindow() in its dropdown list. Reparsing, rebuilding, and clearing, don't help.