News:

As usual while waiting for the next release - don't forget to check the nightly builds in the forum.

Main Menu

Code completion problem

Started by djanku, October 04, 2007, 12:42:15 AM

Previous topic - Next topic

djanku

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

mariocup

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.


djanku