Bug #9428 2006-11-11 21:44

kazeyoukai

No completion for own classes and such?

I have been using Code::Blocks for quite some time now, and I must say it is definitely one of the best IDEs available for C/C++. However, I have found a small issue with the code completion.

It's not severely critical, but very annoying for no code completion to show up. In the following code, for example:

class Foo {

public:

Foo() {

val = 5;

}

int getVal() {

return val;

}

private:

int val;

};

int main(void) {

Foo newFoo = Foo();

std::cout << newFoo.

Upon the "." being typed, there is no code completion for the class, although it does show up in the Symbols Browser, and there is even completion for the std:: namespace. Earlier releases did, in fact, feature the code completion for custom classes, so I'm not sure as to what's happening.

Category
Plugin::CodeCompletion
Group
 
Status
Closed
Close date
2007-07-03 08:48
Assigned to
 
rickg22 2007-06-26 23:31

kazeyoukai, does the bug persist in the latest builds?