Hey, once again I found a bug in auto completion. Consider the following code:
class Other
{
public:
void foo() {}
};
class Parent
{
public:
static Other* getOther() { return new Other; }
};
class X : public Parent
{
};
Now
X::getOther()-> should display the foo() method. It does not pop up anything
though.
Thanks
Frank
_______________________________________________ Qt-creator mailing list [email protected] http://lists.trolltech.com/mailman/listinfo/qt-creator
