Found this small bug. I have a function that takes arguments with double
templates. I declare it in the .h file. When I then want to write the
implementation QtCreator pops up with the function signature for
autocompletion. The problem with the autocomplete is that the space
between the two last ">" signs is removed creating invalid code.
A small example to reproduce would be.
FooBar.h
class A{
void foo(QVector<QVector<float> > &bar);
};
Using the autocomplete of the function arguments in the implementation
will yield:
void A::foo(QVector<QVector<float>> &bar);
Do not know if this is a known issue ie. registred in the bugtracker.
Regards,
Eirik
_______________________________________________
Qt-creator mailing list
[email protected]
http://lists.trolltech.com/mailman/listinfo/qt-creator