mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-16 15:29:55 +00:00
make use of pathToUnicodeString
This commit is contained in:
parent
3581f1b724
commit
afc4e064cb
1 changed files with 2 additions and 1 deletions
|
@ -30,6 +30,7 @@
|
|||
#include <components/esm3/loadtes3.hpp>
|
||||
#include <components/fallback/fallback.hpp>
|
||||
#include <components/fallback/validate.hpp>
|
||||
#include <components/files/conversion.hpp>
|
||||
#include <components/files/qtconversion.hpp>
|
||||
#include <components/misc/rng.hpp>
|
||||
#include <components/nifosg/nifloader.hpp>
|
||||
|
@ -45,7 +46,7 @@ CS::Editor::Editor(int argc, char** argv)
|
|||
, mSettingsState(mCfgMgr)
|
||||
, mDocumentManager(mCfgMgr)
|
||||
, mPid(std::filesystem::temp_directory_path() / "openmw-cs.pid")
|
||||
, mLockFile(QFileInfo(QString::fromStdString(mPid.string())).absoluteFilePath() + ".lock")
|
||||
, mLockFile(QFileInfo(QString::fromStdString(Files::pathToUnicodeString(mPid))).absoluteFilePath() + ".lock")
|
||||
, mMerge(mDocumentManager)
|
||||
, mIpcServerName("org.openmw.OpenCS")
|
||||
, mServer(nullptr)
|
||||
|
|
Loading…
Reference in a new issue