From 8b02e37929a3464df986926213f548ff96e4f09d Mon Sep 17 00:00:00 2001 From: Denis Kozadaev Date: Fri, 2 Jun 2023 20:49:50 +0300 Subject: SunOS cosmetic changes Signed-off-by: Denis Kozadaev (cherry picked from commit 4dabbe71b09383cba554e9338c059e5ed3d54e6c) --- kmtrace/kmtrace.cpp | 3 +++ umbrello/umbrello/associationwidget.cpp | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/kmtrace/kmtrace.cpp b/kmtrace/kmtrace.cpp index 9cf5267f..9e5007fe 100644 --- a/kmtrace/kmtrace.cpp +++ b/kmtrace/kmtrace.cpp @@ -1,5 +1,8 @@ #include #include +#ifdef Q_OS_SOLARIS +#include /* index(), rindex() */ +#endif #include #include #include diff --git a/umbrello/umbrello/associationwidget.cpp b/umbrello/umbrello/associationwidget.cpp index 9c5f7ba4..0e2ec525 100644 --- a/umbrello/umbrello/associationwidget.cpp +++ b/umbrello/umbrello/associationwidget.cpp @@ -1893,7 +1893,7 @@ void AssociationWidget::constrainTextPos(int &textX, int &textY, const int y0 = p0.y(); const int x1 = p1.x(); const int y1 = p1.y(); - double r = sqrt((x1 - x0) * (x1 - x0) + (y1 - y0) * (y1 - y0)) / 2; + double r = sqrt((double)(x1 - x0) * (x1 - x0) + (y1 - y0) * (y1 - y0)) / 2; if (textWidth > r) r = textWidth; // swap textCenter{X,Y} to convert from TQt coord.system. -- cgit v1.2.3