Fixing Account to get protocol class as parameter
[python-purple] / notify_cbs.pxd
index 6180ed9..f23bb0e 100644 (file)
@@ -30,7 +30,7 @@ cdef void *notify_message(notify.PurpleNotifyMsgType type, \
     """
     TODO
     """
-    debug.c_purple_debug_info("notify", "%s", "notify-message\n")
+    debug.purple_debug_info("notify", "%s", "notify-message\n")
     if notify_cbs.has_key("notif-message"):
         (<object> notify_cbs["notify-message"])("notify-message: TODO")
 
@@ -40,7 +40,7 @@ cdef void *notify_email(connection.PurpleConnection *gc, \
     """
     TODO
     """
-    debug.c_purple_debug_info("notify", "%s", "notify-email\n")
+    debug.purple_debug_info("notify", "%s", "notify-email\n")
     if notify_cbs.has_key("notify-email"):
         (<object> notify_cbs["notify-email"])("notify-email: TODO")
 
@@ -50,7 +50,7 @@ cdef void *notify_emails(connection.PurpleConnection *gc, size_t count, \
     """
     TODO
     """
-    debug.c_purple_debug_info("notify", "%s", "notify-emails\n")
+    debug.purple_debug_info("notify", "%s", "notify-emails\n")
     if notify_cbs.has_key("notify-emails"):
         (<object> notify_cbs["notify-emails"])("notify-emails: TODO")
 
@@ -59,7 +59,7 @@ cdef void *notify_formatted(const_char *title, const_char *primary, \
     """
     TODO
     """
-    debug.c_purple_debug_info("notify", "%s", "notify-formatted\n")
+    debug.purple_debug_info("notify", "%s", "notify-formatted\n")
     if notify_cbs.has_key("notify-formatted"):
         (<object> notify_cbs["notify-formatted"])("notify-formatted: TODO")
 
@@ -69,7 +69,7 @@ cdef void *notify_searchresults(connection.PurpleConnection *gc, \
     """
     TODO
     """
-    debug.c_purple_debug_info("notify", "%s", "notify-searchresults\n")
+    debug.purple_debug_info("notify", "%s", "notify-searchresults\n")
     if notify_cbs.has_key("notify-searchresults"):
         (<object> notify_cbs["notify-searchresults"])("notify-searchresults: TODO")
 
@@ -78,7 +78,7 @@ cdef void notify_searchresults_new_rows(connection.PurpleConnection *gc, \
     """
     TODO
     """
-    debug.c_purple_debug_info("notify", "%s", "notify-searchresults-new-rows\n")
+    debug.purple_debug_info("notify", "%s", "notify-searchresults-new-rows\n")
     if notify_cbs.has_key("notify-searchresults-new-rows"):
         (<object> notify_cbs["notify-searchresults-new-rows"])("notify-searchresults-new-rows: TODO")
 
@@ -87,7 +87,7 @@ cdef void *notify_userinfo(connection.PurpleConnection *gc, const_char *who, \
     """
     TODO
     """
-    debug.c_purple_debug_info("notify", "%s", "notify-userinfo\n")
+    debug.purple_debug_info("notify", "%s", "notify-userinfo\n")
     if notify_cbs.has_key("notify-userinfo"):
         (<object> notify_cbs["notify-userinfo"])("notify-userinfo: TODO")
 
@@ -95,7 +95,7 @@ cdef void *notify_uri(const_char *uri):
     """
     TODO
     """
-    debug.c_purple_debug_info("notify", "%s", "notify-uri\n")
+    debug.purple_debug_info("notify", "%s", "notify-uri\n")
     if notify_cbs.has_key("notify-uri"):
         (<object> notify_cbs["notify-uri"])("notify-uri: TODO")
 
@@ -103,6 +103,6 @@ cdef void close_notify(notify.PurpleNotifyType type, void *ui_handle):
     """
     TODO
     """
-    debug.c_purple_debug_info("notify", "%s", "close-notify\n")
+    debug.purple_debug_info("notify", "%s", "close-notify\n")
     if notify_cbs.has_key("close-notify"):
         (<object> notify_cbs["close-notify"])("close-notify: TODO")