@afxgroup
Thanks for taking the time to work with Qt, the more users/developers, the better!
1) The fontconfig loading every time problem is very weird, because on my system it doesn't happen at all. For this reason, I don't know what to do about it.
2) Programs exiting before MiniGL: Often this happens as a result of bad programming. See for instance this code:
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
QCustomWidget *widget = new QCustomWidget;
widget->show();
return app.exec();
}
This code will hang, because the widget is never deleted, and there is nothing I can do about it from within Qt.
3) I could change the initial path of file requesters, don't know what is the standard way of doing stuff on amiga, since we have no default "Documents" path or the like.
4) Qt apps are compiled with "-lunix" which means, that "/path/file" is translated into "path:file". In your case, you should just use "../filename" instead of "/filename".