[Qt-creator] [Qt-Creator] Some bugs?
Roberto Raggi
roberto.raggi at trolltech.com
Fri Feb 6 10:45:35 CET 2009
On Feb 6, 2009, at 7:58 AM, Manuel Fiorelli wrote:
> I have installed the pre-release of Qt Creator for x86_64. The
> program identifies itself as
>
> Qt Creator 0.9.2
> Based on Qt 4.5.0
> Built on Feb 5 2009 at 19:27:27
> From revision 4ef83082f6
>
> First.
> When the dot operator is applied to an object, the code completer
> shows the class constructor among the other members. Is it legal?
Yes, for example
class base {
public:
void non_virtual_foo() {}
};
class my: base {
public:
void non_virtual_foo() {}
};
int main()
{
my m, *m2 = &m;
m.my::non_virtual_foo();
m2->my::non_virtual_foo();
}
>
>
> Second.
> The editor doesn't warn, if you use undeclared symbols. For example,
> you can define a variable of an undeclared type or invoke a function
> which doesn't exist.
Right. We'll add more error/warning messages in future.
Thanks for the report.
ciao robe
More information about the Qt-creator-old
mailing list