Merge lp:~vmiklos/eoec/barcode-lo34 into lp:~kami911/eoec/barcode-improved

Proposed by Miklos Vajna
Status: Merged
Merged at revision: 60
Proposed branch: lp:~vmiklos/eoec/barcode-lo34
Merge into: lp:~kami911/eoec/barcode-improved
Diff against target: 90 lines (+7/-7)
7 files modified
examples/Barcode/barcode/extensioncore.py (+1/-1)
examples/Lookup/lookup/extensioncore.py (+1/-1)
examples/Merriam-Webster Dictionary/merriamwebsterdictionary/extensioncore.py (+1/-1)
examples/Sharpen/sharpen/extensioncore.py (+1/-1)
examples/Shuffle/shuffle/extensioncore.py (+1/-1)
examples/Star Maker/starmaker/extensioncore.py (+1/-1)
template/%extensionname%/extensioncore.py (+1/-1)
To merge this branch: bzr merge lp:~vmiklos/eoec/barcode-lo34
Reviewer Review Type Date Requested Status
KAMI Approve
Review via email: mp+96367@code.launchpad.net

Description of the change

.

To post a comment you must log in.
lp:~vmiklos/eoec/barcode-lo34 updated
37. By Miklos Vajna

do the same for all the other extensions as well

Revision history for this message
KAMI (kami911) wrote :

Thank you for the patches

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'examples/Barcode/barcode/extensioncore.py'
--- examples/Barcode/barcode/extensioncore.py 2009-02-02 16:31:01 +0000
+++ examples/Barcode/barcode/extensioncore.py 2012-03-07 17:06:30 +0000
@@ -20,7 +20,7 @@
2020
21from com.sun.star.beans import XPropertySet21from com.sun.star.beans import XPropertySet
22from com.sun.star.lang import XServiceInfo22from com.sun.star.lang import XServiceInfo
23class propset( object, unohelper.Base, XPropertySet, XServiceInfo ):23class propset( unohelper.Base, XPropertySet, XServiceInfo ):
24 def __init__( self, *args, **kwargs ):24 def __init__( self, *args, **kwargs ):
25 if args:25 if args:
26 self.dict = args[0]26 self.dict = args[0]
2727
=== modified file 'examples/Lookup/lookup/extensioncore.py'
--- examples/Lookup/lookup/extensioncore.py 2009-05-08 08:44:34 +0000
+++ examples/Lookup/lookup/extensioncore.py 2012-03-07 17:06:30 +0000
@@ -20,7 +20,7 @@
2020
21from com.sun.star.beans import XPropertySet21from com.sun.star.beans import XPropertySet
22from com.sun.star.lang import XServiceInfo22from com.sun.star.lang import XServiceInfo
23class propset( object, unohelper.Base, XPropertySet, XServiceInfo ):23class propset( unohelper.Base, XPropertySet, XServiceInfo ):
24 def __init__( self, *args, **kwargs ):24 def __init__( self, *args, **kwargs ):
25 if args:25 if args:
26 self.dict = args[0]26 self.dict = args[0]
2727
=== modified file 'examples/Merriam-Webster Dictionary/merriamwebsterdictionary/extensioncore.py'
--- examples/Merriam-Webster Dictionary/merriamwebsterdictionary/extensioncore.py 2009-01-29 12:18:41 +0000
+++ examples/Merriam-Webster Dictionary/merriamwebsterdictionary/extensioncore.py 2012-03-07 17:06:30 +0000
@@ -20,7 +20,7 @@
2020
21from com.sun.star.beans import XPropertySet21from com.sun.star.beans import XPropertySet
22from com.sun.star.lang import XServiceInfo22from com.sun.star.lang import XServiceInfo
23class propset( object, unohelper.Base, XPropertySet, XServiceInfo ):23class propset( unohelper.Base, XPropertySet, XServiceInfo ):
24 def __init__( self, *args, **kwargs ):24 def __init__( self, *args, **kwargs ):
25 if args:25 if args:
26 self.dict = args[0]26 self.dict = args[0]
2727
=== modified file 'examples/Sharpen/sharpen/extensioncore.py'
--- examples/Sharpen/sharpen/extensioncore.py 2009-05-08 08:44:34 +0000
+++ examples/Sharpen/sharpen/extensioncore.py 2012-03-07 17:06:30 +0000
@@ -20,7 +20,7 @@
2020
21from com.sun.star.beans import XPropertySet21from com.sun.star.beans import XPropertySet
22from com.sun.star.lang import XServiceInfo22from com.sun.star.lang import XServiceInfo
23class propset( object, unohelper.Base, XPropertySet, XServiceInfo ):23class propset( unohelper.Base, XPropertySet, XServiceInfo ):
24 def __init__( self, *args, **kwargs ):24 def __init__( self, *args, **kwargs ):
25 if args:25 if args:
26 self.dict = args[0]26 self.dict = args[0]
2727
=== modified file 'examples/Shuffle/shuffle/extensioncore.py'
--- examples/Shuffle/shuffle/extensioncore.py 2009-05-08 08:44:34 +0000
+++ examples/Shuffle/shuffle/extensioncore.py 2012-03-07 17:06:30 +0000
@@ -20,7 +20,7 @@
2020
21from com.sun.star.beans import XPropertySet21from com.sun.star.beans import XPropertySet
22from com.sun.star.lang import XServiceInfo22from com.sun.star.lang import XServiceInfo
23class propset( object, unohelper.Base, XPropertySet, XServiceInfo ):23class propset( unohelper.Base, XPropertySet, XServiceInfo ):
24 def __init__( self, *args, **kwargs ):24 def __init__( self, *args, **kwargs ):
25 if args:25 if args:
26 self.dict = args[0]26 self.dict = args[0]
2727
=== modified file 'examples/Star Maker/starmaker/extensioncore.py'
--- examples/Star Maker/starmaker/extensioncore.py 2009-01-29 12:18:41 +0000
+++ examples/Star Maker/starmaker/extensioncore.py 2012-03-07 17:06:30 +0000
@@ -20,7 +20,7 @@
2020
21from com.sun.star.beans import XPropertySet21from com.sun.star.beans import XPropertySet
22from com.sun.star.lang import XServiceInfo22from com.sun.star.lang import XServiceInfo
23class propset( object, unohelper.Base, XPropertySet, XServiceInfo ):23class propset( unohelper.Base, XPropertySet, XServiceInfo ):
24 def __init__( self, *args, **kwargs ):24 def __init__( self, *args, **kwargs ):
25 if args:25 if args:
26 self.dict = args[0]26 self.dict = args[0]
2727
=== modified file 'template/%extensionname%/extensioncore.py'
--- template/%extensionname%/extensioncore.py 2009-01-29 12:18:41 +0000
+++ template/%extensionname%/extensioncore.py 2012-03-07 17:06:30 +0000
@@ -20,7 +20,7 @@
2020
21from com.sun.star.beans import XPropertySet21from com.sun.star.beans import XPropertySet
22from com.sun.star.lang import XServiceInfo22from com.sun.star.lang import XServiceInfo
23class propset( object, unohelper.Base, XPropertySet, XServiceInfo ):23class propset( unohelper.Base, XPropertySet, XServiceInfo ):
24 def __init__( self, *args, **kwargs ):24 def __init__( self, *args, **kwargs ):
25 if args:25 if args:
26 self.dict = args[0]26 self.dict = args[0]

Subscribers

People subscribed via source and target branches

to all changes: