Author Topic: Method completion doesn't work inside a class ?  (Read 7152 times)

Offline Folco

  • Regular
  • ***
  • Posts: 343
    • Folco's blog (68k lover)
Method completion doesn't work inside a class ?
« on: November 25, 2010, 10:34:18 am »
Hi,

A sample code :
Code
class A
{
    public:
        void func0 ();
        void func1 ();
};

void A::func0 ();
{
    fun|     /* No completion box appears here */
}
I have a prompt [func0 | func1] only if I specify A::fun

Shouldn't I get the completion box even without the class specifier ?
Kernel Extremist - PedroM power ©

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5491
Re: Method completion doesn't work inside a class ?
« Reply #1 on: November 25, 2010, 10:56:07 am »
It does work, but you have a bug in the code, It doesn't even compile

Code
void A::func0 ();  //<-------------------------------------------------------- NOTICE THIS ;   REMOVE IT  ;-)
{
    fun|     /* No completion box appears here */
}
« Last Edit: November 25, 2010, 10:58:19 am by killerbot »

Offline Folco

  • Regular
  • ***
  • Posts: 343
    • Folco's blog (68k lover)
Re: Method completion doesn't work inside a class ?
« Reply #2 on: November 25, 2010, 03:38:01 pm »
Erf, my bad, thank you ^^
Kernel Extremist - PedroM power ©