mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-16 15:29:55 +00:00
pathToQString makes things shorter
This commit is contained in:
parent
afc4e064cb
commit
249986b6e0
1 changed files with 1 additions and 2 deletions
|
@ -30,7 +30,6 @@
|
|||
#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>
|
||||
|
@ -46,7 +45,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(Files::pathToUnicodeString(mPid))).absoluteFilePath() + ".lock")
|
||||
, mLockFile(QFileInfo(Files::pathToQString(mPid)).absoluteFilePath() + ".lock")
|
||||
, mMerge(mDocumentManager)
|
||||
, mIpcServerName("org.openmw.OpenCS")
|
||||
, mServer(nullptr)
|
||||
|
|
Loading…
Reference in a new issue