X-Git-Url: http://git.maemo.org/git/?p=python-purple;a=blobdiff_plain;f=signal_cbs.pxd;h=ad2ce83980110dcd16c484334805d8722ba239a9;hp=0e496b80279bf0f40e41e7f5a1c0d26640d91140;hb=fa83e5e05e62fa5c6707312d375b97195143e6b7;hpb=e0793149ffd4ba0271c21a63795f510cacb0730d diff --git a/signal_cbs.pxd b/signal_cbs.pxd index 0e496b8..ad2ce83 100644 --- a/signal_cbs.pxd +++ b/signal_cbs.pxd @@ -31,13 +31,13 @@ cdef void signal_signed_on_cb(connection.PurpleConnection *gc, \ cdef char *c_username = NULL cdef char *c_protocol_id = NULL - c_username = account.c_purple_account_get_username(acc) + c_username = account.purple_account_get_username(acc) if c_username == NULL: username = None else: username = c_username - c_protocol_id = account.c_purple_account_get_protocol_id(acc) + c_protocol_id = account.purple_account_get_protocol_id(acc) if c_protocol_id == NULL: protocol_id = None else: @@ -56,13 +56,13 @@ cdef void signal_signed_off_cb(connection.PurpleConnection *gc, \ cdef char *c_username = NULL cdef char *c_protocol_id = NULL - c_username = account.c_purple_account_get_username(acc) + c_username = account.purple_account_get_username(acc) if c_username == NULL: username = None else: username = c_username - c_protocol_id = account.c_purple_account_get_protocol_id(acc) + c_protocol_id = account.purple_account_get_protocol_id(acc) if c_protocol_id == NULL: protocol_id = None else: