aboutsummaryrefslogtreecommitdiff
path: root/x11-toolkits/qt4-gui
diff options
context:
space:
mode:
authorRaphael Kubo da Costa <rakuco@FreeBSD.org>2012-06-02 00:08:27 +0000
committerRaphael Kubo da Costa <rakuco@FreeBSD.org>2012-06-02 00:08:27 +0000
commit7522974a94aef48652fec366ad41cc864d3b901e (patch)
tree82547be719acdfa6a9c992892e5cfda71d0d0581 /x11-toolkits/qt4-gui
parent2c742747d9cd9c1d9c054440cdf3a32a50c63c37 (diff)
downloadports-7522974a94aef48652fec366ad41cc864d3b901e.tar.gz
ports-7522974a94aef48652fec366ad41cc864d3b901e.zip
Notes
Diffstat (limited to 'x11-toolkits/qt4-gui')
-rw-r--r--x11-toolkits/qt4-gui/Makefile1
-rw-r--r--x11-toolkits/qt4-gui/files/patch-src__gui__text__qtextlayout.cpp13
2 files changed, 0 insertions, 14 deletions
diff --git a/x11-toolkits/qt4-gui/Makefile b/x11-toolkits/qt4-gui/Makefile
index 2ce5f8e689d2..7cf71375e83e 100644
--- a/x11-toolkits/qt4-gui/Makefile
+++ b/x11-toolkits/qt4-gui/Makefile
@@ -8,7 +8,6 @@
PORTNAME= gui
DISTVERSION= ${QT4_VERSION}
-PORTREVISION= 1
CATEGORIES?= x11-toolkits
PKGNAMEPREFIX= qt4-
diff --git a/x11-toolkits/qt4-gui/files/patch-src__gui__text__qtextlayout.cpp b/x11-toolkits/qt4-gui/files/patch-src__gui__text__qtextlayout.cpp
deleted file mode 100644
index 7043bfc32308..000000000000
--- a/x11-toolkits/qt4-gui/files/patch-src__gui__text__qtextlayout.cpp
+++ /dev/null
@@ -1,13 +0,0 @@
---- ./src/gui/text/qtextlayout.cpp.orig 2012-03-14 15:01:14.000000000 +0100
-+++ ./src/gui/text/qtextlayout.cpp 2012-04-03 09:40:53.779974016 +0200
-@@ -2508,6 +2508,10 @@
- int pos = *cursorPos;
- int itm;
- const HB_CharAttributes *attributes = eng->attributes();
-+ if (!attributes) {
-+ *cursorPos = 0;
-+ return x.toReal();
-+ }
- while (pos < line.from + line.length && !attributes[pos].charStop)
- pos++;
- if (pos == line.from + (int)line.length) {