Code tooltips problem
Posted: Thu Jan 01, 2009 10:42 pm
Hi,
I've found one problem in (ctags?) code tips. Information for all code fragments in the following code line is displayed correctly,
but for next version a code editor doesn't show code tip for "item" and "GetUserData()" tokens:
The problem is caused by a space before "item" token. If the space exists, then code parsing works fine, but without the space it probably fails.
Regards
marfi
I've found one problem in (ctags?) code tips. Information for all code fragments in the following code line is displayed correctly,
Code: Select all
udProjectItem* pItem = (udProjectItem*) item->GetUserData();
Code: Select all
udProjectItem* pItem = (udProjectItem*)item->GetUserData();
Regards
marfi