summaryrefslogtreecommitdiff
path: root/x11/kdelibs3/patches/patch-db
diff options
context:
space:
mode:
Diffstat (limited to 'x11/kdelibs3/patches/patch-db')
-rw-r--r--x11/kdelibs3/patches/patch-db4
1 files changed, 2 insertions, 2 deletions
diff --git a/x11/kdelibs3/patches/patch-db b/x11/kdelibs3/patches/patch-db
index 03229317f63..b7e747cfc2c 100644
--- a/x11/kdelibs3/patches/patch-db
+++ b/x11/kdelibs3/patches/patch-db
@@ -1,4 +1,4 @@
-$NetBSD: patch-db,v 1.3 2005/12/20 19:58:04 rillig Exp $
+$NetBSD: patch-db,v 1.4 2006/06/01 13:39:10 markd Exp $
For some reason, g++-2.95 on NetBSD 1.6.2/i386 did not accept the ==
operator here. The QT documentation says that using QString::compare is
@@ -8,7 +8,7 @@ equivalent.
+++ khtml/rendering/font.h Tue Dec 20 20:24:55 2005
@@ -43,7 +43,7 @@ public:
FontDef()
- : size( 0 ), italic( false ), smallCaps( false ), weight( 50 ), hasNbsp( true ) {}
+ : size( 0 ), italic( false ), smallCaps( false ), weight( 50 ) {}
bool operator == ( const FontDef &other ) const {
- return ( family == other.family &&
+ return ( QString::compare(family, other.family) == 0 &&