summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cython/installation_proxy.pxi2
-rw-r--r--cython/notification_proxy.pxi2
-rw-r--r--cython/sbservices.pxi2
-rw-r--r--cython/screenshotr.pxi2
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