Code::Blocks Forums
User forums => Using Code::Blocks => Topic started by: djanku on October 04, 2007, 12:42:15 am
-
Hi,
Code::Block is the best IDE editor for Linux, thank you for that :D But I have one problem. I'm writing GTKmm application and after declaration of some widget code completion doesn't work. Example of code:
#include <gtkmm.h>
void some_function() {
Gtk::Window win;
Gtk::Window. // It's work correct (list of methods and members is on display)
win. // but there's is problem... any list doesn't show
}
Where is the problem?
I'm using Gentoo linux...
Thank you for answers!
Dominik Janku
-
Hi,
Code::Blocks code completion works if you type 4 characters (this is configured in the default settings). To get a code completion if you type only 3 characters, just use short cut Ctrl+Space.
-
No, it isn't this problem :(