]> git.pld-linux.org Git - packages/dbus.git/commitdiff
- outdated
authorJakub Bogusz <qboosh@pld-linux.org>
Fri, 27 Apr 2007 22:54:18 +0000 (22:54 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    dbus-python_fixes.patch -> 1.5

dbus-python_fixes.patch [deleted file]

diff --git a/dbus-python_fixes.patch b/dbus-python_fixes.patch
deleted file mode 100644 (file)
index 35d7de9..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
---- dbus-0.34/dbus/dbus_bindings.pyx.orig      2005-05-19 22:27:19.000000000 +0200
-+++ dbus-0.34/dbus/dbus_bindings.pyx           2005-07-01 11:34:26.369756328 +0200
-@@ -1246,7 +1246,12 @@
-         return dbus_message_set_destination(self.msg, destination)
-     def get_destination(self):
--        return dbus_message_get_destination(self.msg)
-+        cdef char *destination
-+        destination = dbus_message_get_destination(self.msg)
-+        if destination == NULL:
-+            return None
-+        else:
-+            return destination
-     def set_sender(self, sender):
-         return dbus_message_set_sender(self.msg, sender)
This page took 0.0403 seconds and 4 git commands to generate.