From 092f7147abe07e99fcf0c957aeab444e5dcda771 Mon Sep 17 00:00:00 2001 From: Yuhang Zhao <2546789017@qq.com> Date: Sun, 3 May 2020 21:10:03 +0800 Subject: [PATCH] Fix typo in some comments. Signed-off-by: Yuhang Zhao <2546789017@qq.com> --- main.cpp | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/main.cpp b/main.cpp index 07d20d1..68a89ec 100644 --- a/main.cpp +++ b/main.cpp @@ -7,12 +7,13 @@ int main(int argc, char *argv[]) { // High DPI scaling is enabled by default from Qt 6 #if (QT_VERSION < QT_VERSION_CHECK(6, 0, 0)) // Windows: we are using the manifest file to get maximum compatibility - // because some APIs are not supprted on older systems such as Windows 7 - // and 8. And once we set the DPI awareness level in the manifest file, any - // attemptation to try to change it through API will fail. In other words, - // Qt won't be able to enable or disable the DPI awareness level once we - // have set it in the manifest file. So the following two lines are uesless - // actually (However, they are still useful on other platforms). + // because some APIs are not supprted on old systems such as Windows 7 + // and Windows 8. And once we have set the DPI awareness level in the + // manifest file, any attemptation to try to change it through API will + // fail. In other words, Qt won't be able to enable or disable high DPI + // scaling or change the DPI awareness level once we have set it in the + // manifest file. So the following two lines are uesless actually (However, + // they are still useful on other platforms). QGuiApplication::setAttribute(Qt::AA_EnableHighDpiScaling); QGuiApplication::setAttribute(Qt::AA_UseHighDpiPixmaps); #endif