code completion constructor tooltips
Posted: Thu Feb 24, 2011 1:26 pm
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);
}
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);
}