Ich habe hier eine kleine QT-Anwednung für MacOS, die auf allen hier verfügbaren MacOS-Rechnern ohne Probleme läuft.
Bei einem Kunden stürzt die Anwendung mit folgendem Callstack ab:
Code: Alles auswählen
0 + 0
QIconvCodec::convertToUnicode(char const*, int, QTextCodec::ConverterState*) const +50
QString::fromLocal8Bit(char const*, int) + 160
QLibraryInfo::location(QLibraryInfo::LibraryLocation) + 3100
QCoreApplication::libraryPaths() + 304
QCoreApplication::init() + 203
QCoreApplication::QCoreApplication(QCoreApplicationPrivate&) + 66
QApplication::QApplication(int&, char**, int) + 80
main +57
start + 54
Code: Alles auswählen
int main(int argc, char * argv[])
{
try{
QApplication app(argc, argv);
...
}
catch(std::exception& e)
{ ... }
return 0;
}Scheinbar das gleiche Problem ist unter
http://lists.trolltech.com/qt4-preview- ... 090-0.html
beschrieben. Allerdings habe ich dort keine Lösung gefunden.
DJohn