code completion constructor tooltips

CodeLite installation/troubleshooting forum
temnozor
CodeLite Enthusiast
Posts: 12
Joined: Wed Jan 05, 2011 2:16 pm
Genuine User: Yes
IDE Question: c++
Contact:

code completion constructor tooltips

Post 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);
}
User avatar
eranif
CodeLite Plugin
Posts: 6375
Joined: Wed Feb 06, 2008 9:29 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: code completion constructor tooltips

Post by eranif »

Please report this at sourceforge (add the sample code you provided here as well)

Eran
Make sure you have read the HOW TO POST thread
Post Reply