summaryrefslogtreecommitdiffstats
path: root/src/gui/image
diff options
context:
space:
mode:
authorEdward Welbourne <edward.welbourne@qt.io>2019-02-22 15:53:01 +0100
committerEdward Welbourne <edward.welbourne@qt.io>2019-03-04 15:33:49 +0000
commit1270aeb0f96547ad32512c92ee2e69adb1f27011 (patch)
tree73e2b14a95d60d83e32cdc423a7ee7bfd08bdff9 /src/gui/image
parent070f75d3b0f5313a0f486fe5c811a8e40dd97967 (diff)
Fix typos in deprecation messages, noticed during code review
Missing Q on the front of RegularExpression. Poor wording in QPixmap::fill() messages; and stray spaces at their starts. Task-number: QTBUG-73484 Change-Id: Ib953114c047afc37f0a903fcaaebfbc172079cbc Reviewed-by: Shawn Rutledge <shawn.rutledge@qt.io>
Diffstat (limited to 'src/gui/image')
-rw-r--r--src/gui/image/qpixmap.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/image/qpixmap.h b/src/gui/image/qpixmap.h
index 2a7393225e..13c81f18d0 100644
--- a/src/gui/image/qpixmap.h
+++ b/src/gui/image/qpixmap.h
@@ -95,9 +95,9 @@ public:
void fill(const QColor &fillColor = Qt::white);
#if QT_DEPRECATED_SINCE(5, 13)
- QT_DEPRECATED_X(" Use QPainter or the fill(QColor)")
+ QT_DEPRECATED_X("Use QPainter or fill(QColor)")
void fill(const QPaintDevice *device, const QPoint &ofs);
- QT_DEPRECATED_X(" Use QPainter or the fill(QColor)")
+ QT_DEPRECATED_X("Use QPainter or fill(QColor)")
void fill(const QPaintDevice *device, int xofs, int yofs);
#endif