summaryrefslogtreecommitdiff
path: root/src/envmetrics.cpp
diff options
context:
space:
mode:
authorisanae <14251494+isanae@users.noreply.github.com>2019-07-19 04:54:47 -0400
committerisanae <14251494+isanae@users.noreply.github.com>2019-07-22 07:39:52 -0400
commitf49efd6d448dccd4100fa46e2ebf1690d97033cc (patch)
tree700e4be020963a2cdd7ff13c4003c59efa064201 /src/envmetrics.cpp
parentb3d0ddb0b75da4abd59cae1508d983945c8e235d (diff)
replaced formatSystemMessageQ() with formatSystemMessage()
replaced windowsErrorString() with formatSystemMessage()
Diffstat (limited to 'src/envmetrics.cpp')
-rw-r--r--src/envmetrics.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/envmetrics.cpp b/src/envmetrics.cpp
index 784e4baf..b1b9bd2e 100644
--- a/src/envmetrics.cpp
+++ b/src/envmetrics.cpp
@@ -19,7 +19,7 @@ int getDesktopDpi()
if (!dc) {
const auto e = GetLastError();
- log::error("can't get desktop DC, {}", formatSystemMessageQ(e));
+ log::error("can't get desktop DC, {}", formatSystemMessage(e));
return 0;
}
@@ -52,7 +52,7 @@ HMONITOR findMonitor(const QString& name)
const auto e = GetLastError();
log::error(
"GetMonitorInfo() failed for '{}', {}",
- data.name, formatSystemMessageQ(e));
+ data.name, formatSystemMessage(e));
// error for this monitor, but continue
return TRUE;
@@ -121,7 +121,7 @@ int getDpi(const QString& monitorDevice)
if (FAILED(r)) {
log::error(
"GetDpiForMonitor() failed for '{}', {}",
- monitorDevice, formatSystemMessageQ(r));
+ monitorDevice, formatSystemMessage(r));
return 0;
}