Code::Blocks Forums

Developer forums (C::B DEVELOPMENT STRICTLY!) => Plugins development => Topic started by: kisoft on November 01, 2005, 08:52:51 am

Title: CodeCompletion, ignore function parameters
Post by: kisoft on November 01, 2005, 08:52:51 am
I use a CodeCompletion plugin widely. I have problems. Look a source code below:
Code
void foo( wxMenuBar *parMenuBar )
{
  wxMenuBar *locMenuBar;
 
  locMenuBar->
  parMenuBar->

}
locMenuBar-> open a listbox with wxMenuBar members, and parMenuBar - not.
IMHO, parameters equ a local variables.
Why not work? Yet not implemented?