News:

Accounts with zero posts and zero activity during the last months will be deleted periodically to fight SPAM!

Main Menu

Method completion doesn't work inside a class ?

Started by Folco, November 25, 2010, 10:34:18 AM

Previous topic - Next topic

Folco

Hi,

A sample 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 ©

killerbot

#1
It does work, but you have a bug in the code, It doesn't even compile


void A::func0 ();  //<-------------------------------------------------------- NOTICE THIS ;   REMOVE IT  ;-)
{
    fun|     /* No completion box appears here */
}

Folco

Kernel Extremist - PedroM power ©