mirror of
https://github.com/dashpay/dash.git
synced 2024-12-25 03:52:49 +01:00
refactor: more of 24306 (GetPathArg in Dash-specific code)
This commit is contained in:
parent
562e3f7b18
commit
ba7e500062
@ -680,7 +680,7 @@ int GuiMain(int argc, char* argv[])
|
||||
}
|
||||
// Validate/set custom css directory
|
||||
if (gArgs.IsArgSet("-custom-css-dir")) {
|
||||
fs::path customDir = fs::PathFromString(gArgs.GetArg("-custom-css-dir", ""));
|
||||
fs::path customDir = gArgs.GetPathArg("-custom-css-dir");
|
||||
QString strCustomDir = GUIUtil::PathToQString(customDir);
|
||||
std::vector<QString> vecRequiredFiles = GUIUtil::listStyleSheets();
|
||||
QString strFile;
|
||||
|
@ -481,7 +481,7 @@ fs::path ArgsManager::GetBackupsDirPath()
|
||||
if (!IsArgSet("-walletbackupsdir"))
|
||||
return GetDataDirNet() / "backups";
|
||||
|
||||
return fs::absolute(fs::PathFromString(GetArg("-walletbackupsdir", "")));
|
||||
return fs::absolute(GetPathArg("-walletbackupsdir"));
|
||||
}
|
||||
|
||||
void ArgsManager::ClearPathCache()
|
||||
|
Loading…
Reference in New Issue
Block a user