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

More layer updates
author Chris Cannam
date Mon, 01 Jul 2019 14:17:13 +0100
parents 28075cc658c9
children
line wrap: on
line diff
--- a/layer/PaintAssistant.cpp	Fri Jun 28 17:37:22 2019 +0100
+++ b/layer/PaintAssistant.cpp	Mon Jul 01 14:17:13 2019 +0100
@@ -114,6 +114,11 @@
         
         if (spaceForLabel) {
             
+            // 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"
+
             int tx = 3;
             if (paint.fontMetrics().width(text) < w - 10) {
                 tx = w - 10 - paint.fontMetrics().width(text);