Slavek,
I think there is a t->k problem in tdevelop/kdevdesigner/designer/listeditor.ui.h:33:5. The error at 89% is:
In file included from /build/src/build/kdevdesigner/designer/listeditor.cpp:22:0: /build/src/build/kdevdesigner/designer/listeditor.ui.h: In member function 'virtual void ListEditor::addItem()': /build/src/build/kdevdesigner/designer/listeditor.ui.h:33:5: error: 'App' was not declared in this scope
The code is:
void ListEditor::addItem() { TQListViewItem *i = new TQListViewItem( listview, listview->lastItem() ); i->setRenameEnabled( 0, TRUE ); 33 tqApp->processEvents(); i->startRename( 0 ); }
Is this supposed to be 'qApp' instead of 'tqApp'? I don't know if this is a needed 'tqt-interface' 't' or a stray 't' from the TQt3 rename. What say the experts?