Hi, found another little bug. I had a function signature:
cpp:
foo(QObject *parent){}
h:
foo(QObject *parent = 0);
Then I added a new parameter:
cpp:
foo(const QString &id, QObject *parent){}
The result in the .h file:
foo(const QString &id = 0, QObject *parent);
The default parameter moved to the wrong position.
G.
_______________________________________________
Qt-creator mailing list
[email protected]
http://lists.qt.nokia.com/mailman/listinfo/qt-creator
