diff options
Diffstat (limited to 'dilos/tdesdk/debian/patches/dilos.patch')
-rw-r--r-- | dilos/tdesdk/debian/patches/dilos.patch | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/dilos/tdesdk/debian/patches/dilos.patch b/dilos/tdesdk/debian/patches/dilos.patch deleted file mode 100644 index d78ce6072..000000000 --- a/dilos/tdesdk/debian/patches/dilos.patch +++ /dev/null @@ -1,13 +0,0 @@ -Index: tdesdk/umbrello/umbrello/associationwidget.cpp -=================================================================== ---- tdesdk.orig/umbrello/umbrello/associationwidget.cpp -+++ tdesdk/umbrello/umbrello/associationwidget.cpp -@@ -1893,7 +1893,7 @@ void AssociationWidget::constrainTextPos - 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. |