X-Git-Url: http://git.maemo.org/git/?p=python-purple;a=blobdiff_plain;f=notify_cbs.pxd;h=f23bb0e264faf50f69e78589c81f6c78d404d230;hp=6180ed9d42de8b9b02f3ece80c058bc0462cbb01;hb=fa83e5e05e62fa5c6707312d375b97195143e6b7;hpb=316a12e9e5bde7d3036d954f9d63ab8cf7b52666 diff --git a/notify_cbs.pxd b/notify_cbs.pxd index 6180ed9..f23bb0e 100644 --- a/notify_cbs.pxd +++ b/notify_cbs.pxd @@ -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"): ( 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"): ( 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"): ( 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"): ( 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"): ( 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"): ( 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"): ( 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"): ( 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"): ( notify_cbs["close-notify"])("close-notify: TODO")