You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.9 KiB
59 lines
1.9 KiB
---
|
|
src/gui/painting/qfixed_p.h | 17 +++++++++++++++++
|
|
src/gui/text/qtextlayout.cpp | 9 ++++++---
|
|
2 files changed, 23 insertions(+), 3 deletions(-)
|
|
|
|
--- a/src/gui/painting/qfixed_p.h
|
|
+++ b/src/gui/painting/qfixed_p.h
|
|
@@ -18,6 +18,7 @@
|
|
#include <QtGui/private/qtguiglobal_p.h>
|
|
#include "QtCore/qdebug.h"
|
|
#include "QtCore/qpoint.h"
|
|
+#include "QtCore/qnumeric.h"
|
|
#include "QtCore/qsize.h"
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
@@ -136,6 +137,22 @@ constexpr inline QFixed operator+(uint i
|
|
constexpr inline QFixed operator-(uint i, QFixed d) { return -(d-i); }
|
|
// constexpr inline QFixed operator*(qreal d, QFixed d2) { return d2*d; }
|
|
|
|
+inline bool qAddOverflow(QFixed v1, QFixed v2, QFixed *r)
|
|
+{
|
|
+ int val;
|
|
+ bool result = qAddOverflow(v1.value(), v2.value(), &val);
|
|
+ r->setValue(val);
|
|
+ return result;
|
|
+}
|
|
+
|
|
+inline bool qMulOverflow(QFixed v1, QFixed v2, QFixed *r)
|
|
+{
|
|
+ int val;
|
|
+ bool result = qMulOverflow(v1.value(), v2.value(), &val);
|
|
+ r->setValue(val);
|
|
+ return result;
|
|
+}
|
|
+
|
|
#ifndef QT_NO_DEBUG_STREAM
|
|
inline QDebug &operator<<(QDebug &dbg, QFixed f)
|
|
{ return dbg << f.toReal(); }
|
|
--- a/src/gui/text/qtextlayout.cpp
|
|
+++ b/src/gui/text/qtextlayout.cpp
|
|
@@ -2105,11 +2105,14 @@ found:
|
|
eng->maxWidth = qMax(eng->maxWidth, line.textWidth);
|
|
} else {
|
|
eng->minWidth = qMax(eng->minWidth, lbh.minw);
|
|
- eng->maxWidth += line.textWidth;
|
|
+ if (qAddOverflow(eng->maxWidth, line.textWidth, &eng->maxWidth))
|
|
+ eng->maxWidth = QFIXED_MAX;
|
|
}
|
|
|
|
- if (line.textWidth > 0 && item < eng->layoutData->items.size())
|
|
- eng->maxWidth += lbh.spaceData.textWidth;
|
|
+ if (line.textWidth > 0 && item < eng->layoutData->items.size()) {
|
|
+ if (qAddOverflow(eng->maxWidth, lbh.spaceData.textWidth, &eng->maxWidth))
|
|
+ eng->maxWidth = QFIXED_MAX;
|
|
+ }
|
|
|
|
line.textWidth += trailingSpace;
|
|
if (lbh.spaceData.length) {
|