summaryrefslogtreecommitdiffstats
path: root/examples/bluetooth/lowenergyscanner/main.cpp
diff options
context:
space:
mode:
authorAndre de la Rocha <andre.rocha@qt.io>2019-06-06 13:55:29 +0200
committerAndre de la Rocha <andre.rocha@qt.io>2019-06-06 13:55:29 +0200
commitbbd5a988592e31b5f8ec0a111e7fea30c222f0ec (patch)
treee0d88cc8f106f46a24489a7b8fee19f627898146 /examples/bluetooth/lowenergyscanner/main.cpp
parent6ee559eefc3fee286eb92a5f5d8b8fe004d0dc42 (diff)
Update Bluetooth examples for high-DPI displays and nullptr
This change sets the Qt::AA_EnableHighDpiScaling application attribute. It also uses nullptr to initialize pointers and adds a trivial optimization to the low energy scanner example. Change-Id: Ia923573ad78108a2a6a72be4c0948ea97a7ec094 Reviewed-by: Alex Blasche <alexander.blasche@qt.io>
Diffstat (limited to 'examples/bluetooth/lowenergyscanner/main.cpp')
-rw-r--r--examples/bluetooth/lowenergyscanner/main.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/bluetooth/lowenergyscanner/main.cpp b/examples/bluetooth/lowenergyscanner/main.cpp
index 351ab13a..f223b028 100644
--- a/examples/bluetooth/lowenergyscanner/main.cpp
+++ b/examples/bluetooth/lowenergyscanner/main.cpp
@@ -59,6 +59,7 @@
int main(int argc, char *argv[])
{
//QLoggingCategory::setFilterRules(QStringLiteral("qt.bluetooth* = true"));
+ QGuiApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
QGuiApplication app(argc, argv);
Device d;