diff options
author | Bryan Forbes | 2010-04-19 11:54:35 -0500 |
---|---|---|
committer | Martin Szulecki | 2012-03-20 23:25:55 +0100 |
commit | 6f40114fd26dd0bfb7fcbe4067cc7f4f3eec428a (patch) | |
tree | a0ab8cf4265ad59a813a0cfac33a9ca98416fda5 /cython | |
parent | 7275b8e8b1134c85d6f4b694ad6f515b3a6dace9 (diff) | |
download | libimobiledevice-6f40114fd26dd0bfb7fcbe4067cc7f4f3eec428a.tar.gz libimobiledevice-6f40114fd26dd0bfb7fcbe4067cc7f4f3eec428a.tar.bz2 |
Changed some parent class relationships.
Diffstat (limited to 'cython')
-rw-r--r-- | cython/installation_proxy.pxi | 2 | ||||
-rw-r--r-- | cython/notification_proxy.pxi | 2 | ||||
-rw-r--r-- | cython/sbservices.pxi | 2 | ||||
-rw-r--r-- | cython/screenshotr.pxi | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/cython/installation_proxy.pxi b/cython/installation_proxy.pxi index f584cbd..cf6662f 100644 --- a/cython/installation_proxy.pxi +++ b/cython/installation_proxy.pxi @@ -42,7 +42,7 @@ cdef class InstallationProxyError(BaseError): } BaseError.__init__(self, *args, **kwargs) -cdef class InstallationProxy(Base): +cdef class InstallationProxyClient(PropertyListService): __service_name__ = "com.apple.mobile.installation_proxy" cdef instproxy_client_t _c_client diff --git a/cython/notification_proxy.pxi b/cython/notification_proxy.pxi index cc25f2d..7b2911b 100644 --- a/cython/notification_proxy.pxi +++ b/cython/notification_proxy.pxi @@ -30,7 +30,7 @@ cdef class NotificationProxyError(BaseError): } BaseError.__init__(self, *args, **kwargs) -cdef class NotificationProxy(Base): +cdef class NotificationProxyClient(PropertyListService): __service_name__ = "com.apple.mobile.notification_proxy" cdef np_client_t _c_client diff --git a/cython/sbservices.pxi b/cython/sbservices.pxi index 13a49aa..55c94a5 100644 --- a/cython/sbservices.pxi +++ b/cython/sbservices.pxi @@ -25,7 +25,7 @@ cdef class SpringboardServicesError(BaseError): } BaseError.__init__(self, *args, **kwargs) -cdef class SpringboardServicesClient(Base): +cdef class SpringboardServicesClient(PropertyListService): __service_name__ = "com.apple.springboardservices" cdef sbservices_client_t _c_client diff --git a/cython/screenshotr.pxi b/cython/screenshotr.pxi index d3a896f..d7dfc57 100644 --- a/cython/screenshotr.pxi +++ b/cython/screenshotr.pxi @@ -27,7 +27,7 @@ cdef class ScreenshotrError(BaseError): } BaseError.__init__(self, *args, **kwargs) -cdef class ScreenshotrClient(Base): +cdef class ScreenshotrClient(DeviceLinkService): __service_name__ = "com.apple.mobile.screenshotr" cdef screenshotr_client_t _c_client |