Author Topic: Code completion problem  (Read 4052 times)

djanku

  • Guest
Code completion problem
« 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

mariocup

  • Guest
Re: Code completion problem
« Reply #1 on: October 04, 2007, 07:50:33 am »
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

  • Guest
Re: Code completion problem
« Reply #2 on: October 15, 2007, 05:21:45 am »
No, it isn't this problem :(