Gentoo Archives: gentoo-commits

From: "Jonathan Callen (abcd)" <abcd@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in kde-base/pykde4/files: pykde4-4.3.5-fix-pykdeuic4.patch
Date: Thu, 28 Jan 2010 06:13:56
Message-Id: E1NaNdZ-0000gD-6x@stork.gentoo.org
1 abcd 10/01/28 06:13:53
2
3 Added: pykde4-4.3.5-fix-pykdeuic4.patch
4 Log:
5 Fix pykdeuic4 for recent PyQt4
6 (Portage version: -svn/cvs/Linux i686)
7
8 Revision Changes Path
9 1.1 kde-base/pykde4/files/pykde4-4.3.5-fix-pykdeuic4.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/pykde4/files/pykde4-4.3.5-fix-pykdeuic4.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/pykde4/files/pykde4-4.3.5-fix-pykdeuic4.patch?rev=1.1&content-type=text/plain
13
14 Index: pykde4-4.3.5-fix-pykdeuic4.patch
15 ===================================================================
16 --- trunk/KDE/kdebindings/python/pykde4/tools/pykdeuic4/pykdeuic4.py 2009/12/21 19:21:54 1064783
17 +++ trunk/KDE/kdebindings/python/pykde4/tools/pykdeuic4/pykdeuic4.py 2009/12/21 19:22:32 1064784
18 @@ -39,7 +39,7 @@
19 def __init__(self,string):
20 original_i18n_string.__init__(self,string)
21 def __str__(self):
22 - return "kdecore.i18n(\"%s\")" % (self.escape(self.string),)
23 + return "kdecore.i18n(\"%s\")" % (qtproxies.escape(self.string),)
24 qtproxies.i18n_string = kde_i18n_string
25
26 def kdeFilter():