Skip to content

Commit

Permalink
AppManager: small bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
devernay committed Nov 8, 2017
1 parent 5819073 commit 3df5766
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Engine/AppManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@ AppManager::loadFromArgs(const CLArgs& cl)
QString path = QCoreApplication::applicationDirPath() + QString::fromUtf8("/../Resources/etc/fonts");
QFileInfo fileInfo(path);
if ( !fileInfo.exists() ) {
std::cerr << "Fontconfig configuration file " << fileInfo.canonicalFilePath().toStdString() << " does not exist, not setting FONTCONFIG_PATH "<< std::endl;
std::cerr << "Fontconfig configuration file " << path.toStdString() << " does not exist, not setting FONTCONFIG_PATH "<< std::endl;
} else {
QString fcPath = fileInfo.canonicalFilePath();

Expand Down

0 comments on commit 3df5766

Please sign in to comment.