diff layer/LinearColourScale.cpp @ 1471:f2525e6cbdf1 by-id

More layer updates
author Chris Cannam
date Mon, 01 Jul 2019 14:17:13 +0100
parents a34a2a25907c
children
line wrap: on
line diff
--- a/layer/LinearColourScale.cpp	Fri Jun 28 17:37:22 2019 +0100
+++ b/layer/LinearColourScale.cpp	Mon Jul 01 14:17:13 2019 +0100
@@ -26,6 +26,11 @@
 LinearColourScale::getWidth(LayerGeometryProvider *,
                             QPainter &paint)
 {
+    // Qt 5.13 deprecates QFontMetrics::width(), but its suggested
+    // replacement (horizontalAdvance) was only added in Qt 5.11
+    // which is too new for us
+#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
+
     return paint.fontMetrics().width("-000.00") + 15;
 }