Menu

#5 Mac OS X Source Error

Unstable_(example)
open
nobody
None
1
2013-05-28
2013-05-28
Vanimelde
No

There is a type mismatch on line 103 of main.cpp in the 5.1 source code:

app.setLibraryPaths(app.applicationDirPath() + "/../PlugIns");

which provides a QString as a parameter when a QStringList is required. This error is corrected by the following revision:

app.setLibraryPaths(QStringList(app.applicationDirPath() + "/../PlugIns"));

which enables compilation of the source code on Mac OS X 10.8.

Discussion


Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.