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);
}
code completion constructor tooltips
-
- CodeLite Enthusiast
- Posts: 12
- Joined: Wed Jan 05, 2011 2:16 pm
- Genuine User: Yes
- IDE Question: c++
- Contact:
- 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
Please report this at sourceforge (add the sample code you provided here as well)
Eran
Eran
Make sure you have read the HOW TO POST thread