Page 1 of 1

code completion constructor tooltips

Posted: Thu Feb 24, 2011 1:26 pm
by temnozor
Hi,

it looks like the tooltips for constructors of local objects are not working.

e.g.

class Foobar{
Foobar();
Foobar(float, int);
~Foobar();
}

.. main(..)
{
Foobar foo(...no tooltip pops up);
}

if you create objects on heap using a pointer it works:

class Foobar{
Foobar();
Foobar(float, int);
~Foobar();
}

.. main(..)
{
Foobar* foo = new Foobar(tooltip pops up);
}

Re: code completion constructor tooltips

Posted: Thu Feb 24, 2011 4:02 pm
by eranif
Please report this at sourceforge (add the sample code you provided here as well)

Eran