Code::Blocks Forums

User forums => Using Code::Blocks => Topic started by: Garulf on April 25, 2008, 02:03:14 pm

Title: Code-Completion Issues
Post by: Garulf on April 25, 2008, 02:03:14 pm
Hi guys,
I'm using C::B 8.02 on Debian.
Code completion doesn't show anything when i create a new object of the class(it doesn't show the constructor parametres). Eg:
Code
class myc {
public:
   myc(int a,int b, ecc ecc);
};

//implementation

when i try something like
Code
myc * c = new myc( 
i have no list.
But
Code
my * c = new myc(2,3,ecc ecc);
c->myc( //!!

"works!", the tool tip appears.

I've problem also with code completion on wxWigdets. It doesn't work at all. I try to add path everywhere,and check the follow local and global directives. It worked only yesterday when i add all wx/ dir to the project, but not for all classes:
.it worked for wxFrameBase but not  wxFrame.
.some method were not in list (like Show()).
any suggest?