diff options
Diffstat (limited to 'x11')
-rw-r--r-- | x11/kdebase3/distinfo | 3 | ||||
-rw-r--r-- | x11/kdebase3/patches/patch-kicker_applets_launcher_easyvector.h | 31 |
2 files changed, 33 insertions, 1 deletions
diff --git a/x11/kdebase3/distinfo b/x11/kdebase3/distinfo index bdd2c23a266..65f3d8ff2c5 100644 --- a/x11/kdebase3/distinfo +++ b/x11/kdebase3/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.114 2011/11/19 21:17:27 markd Exp $ +$NetBSD: distinfo,v 1.115 2012/01/20 16:59:19 joerg Exp $ SHA1 (Daemon.README) = eb1e6af52adc02ded77af17e8953134b7e60d23b RMD160 (Daemon.README) = 39edd92ed4314397080f32a8caff0ac3f716ecf4 @@ -61,3 +61,4 @@ SHA1 (patch-ge) = 8470cf03d768d784714e926281757e9d68749360 SHA1 (patch-gf) = 78de196a700fa9cd5e221ff57c295fdb3562f931 SHA1 (patch-kcheckpass_checkpass_pam.c) = b5dd2e50c5f1047d3c195836c8b2d06e11edea3b SHA1 (patch-kdesud) = acc40c2d1fb65e404a7aa0dbb6eae72fa7ac6a5e +SHA1 (patch-kicker_applets_launcher_easyvector.h) = 7bcb64630a71cb3740ccf203b63dcdcbb7b30675 diff --git a/x11/kdebase3/patches/patch-kicker_applets_launcher_easyvector.h b/x11/kdebase3/patches/patch-kicker_applets_launcher_easyvector.h new file mode 100644 index 00000000000..ad1e1d4b111 --- /dev/null +++ b/x11/kdebase3/patches/patch-kicker_applets_launcher_easyvector.h @@ -0,0 +1,31 @@ +$NetBSD: patch-kicker_applets_launcher_easyvector.h,v 1.1 2012/01/20 16:59:20 joerg Exp $ + +--- kicker/applets/launcher/easyvector.h.orig 2012-01-18 21:40:53.000000000 +0000 ++++ kicker/applets/launcher/easyvector.h +@@ -87,7 +87,7 @@ typename EasyVector< VALUE, CHECKINDEX > + template < class VALUE, bool CHECKINDEX > + void EasyVector< VALUE, CHECKINDEX >::eraseAt(Index index) + { _checkIndex(index); +- erase(this->begin()+index); ++ this->erase(this->begin()+index); + } + + +@@ -108,7 +108,7 @@ void EasyVector< VALUE, CHECKINDEX >::in + this->push_back(value); + return; + } +- insert(this->begin()+index,value); ++ this->insert(this->begin()+index,value); + } + + +@@ -116,7 +116,7 @@ template < class VALUE, bool CHECKINDEX + void EasyVector< VALUE, CHECKINDEX >::insertAt(EasyVector< VALUE, CHECKINDEX >::Index index,const EasyVector< VALUE, CHECKINDEX > &v) + { index=_convertInsertIndex(index); + _checkInsertIndex(index); +- insert(this->begin()+index,v.begin(),v.end()); ++ this->insert(this->begin()+index,v.begin(),v.end()); + } + + |