Skip to content
This repository has been archived by the owner on Jun 16, 2024. It is now read-only.

Commit

Permalink
Macのffmpegパス不正対策
Browse files Browse the repository at this point in the history
  • Loading branch information
CSReviser committed Apr 13, 2022
1 parent 5ec86cd commit 4ebbc52
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions utility.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ namespace {
// Macの場合はアプリケーションバンドル、それ以外はアプリケーションが含まれるディレクトリを返す
QString Utility::applicationBundlePath() {
QString result = QCoreApplication::applicationDirPath();
#ifdef QT4_QT5_MAC
result = QDir::cleanPath( result + UPUPUP );
#endif
//#ifdef QT4_QT5_MAC //Macのffmpegパス不正対策 2022/04/13
// result = QDir::cleanPath( result + UPUPUP );
//#endif
result += QDir::separator();
return result;
}
Expand Down

0 comments on commit 4ebbc52

Please sign in to comment.