diff options
author | Leander Beernaert <leander.beernaert@qt.io> | 2019-11-11 14:03:37 +0100 |
---|---|---|
committer | Leander Beernaert <leander.beernaert@qt.io> | 2019-11-11 14:08:52 +0100 |
commit | ce187c4f0e57d5053583613aeedbc89024bae240 (patch) | |
tree | b634e00fb919463a4264d522bbd3738f81e001c0 /tests/manual/highdpi | |
parent | 937e014e6382c172d00ef2a42dcc8913206075f8 (diff) | |
download | qtbase-ce187c4f0e57d5053583613aeedbc89024bae240.tar.gz |
Fix compile errors related to missing Qt:: namespace
Change-Id: I092a26ef38b08c52d84adb027a1b1bdee8cc7f6b
Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
Diffstat (limited to 'tests/manual/highdpi')
-rw-r--r-- | tests/manual/highdpi/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/manual/highdpi/main.cpp b/tests/manual/highdpi/main.cpp index 51a7026e85..0329e62387 100644 --- a/tests/manual/highdpi/main.cpp +++ b/tests/manual/highdpi/main.cpp @@ -63,7 +63,7 @@ static QTextStream &operator<<(QTextStream &str, const QRect &r) { - str << r.width() << 'x' << r.height() << forcesign << r.x() << r.y() << noforcesign; + str << r.width() << 'x' << r.height() << Qt::forcesign << r.x() << r.y() << Qt::noforcesign; return str; } |