mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-24 21:44:25 +00:00
Replace magic number with system define
This commit is contained in:
parent
5a638e4d28
commit
fc93f2eb78
@ -581,7 +581,7 @@ QString Utils::Misc::libtorrentVersionString()
|
|||||||
QString Utils::Misc::windowsSystemPath()
|
QString Utils::Misc::windowsSystemPath()
|
||||||
{
|
{
|
||||||
static const QString path = []() -> QString {
|
static const QString path = []() -> QString {
|
||||||
WCHAR systemPath[64] = {0};
|
WCHAR systemPath[MAX_PATH] = {0};
|
||||||
GetSystemDirectoryW(systemPath, sizeof(systemPath) / sizeof(WCHAR));
|
GetSystemDirectoryW(systemPath, sizeof(systemPath) / sizeof(WCHAR));
|
||||||
return QString::fromWCharArray(systemPath);
|
return QString::fromWCharArray(systemPath);
|
||||||
}();
|
}();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user