aboutsummaryrefslogtreecommitdiffstats
path: root/query.c
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@gaast.net>2007-04-15 18:03:08 -0700
committerWilmer van der Gaast <wilmer@gaast.net>2007-04-15 18:03:08 -0700
commit84b045d409f1e8da6d8bf379c6fef7236dcd9bcd (patch)
tree765681f302614273ac61e1560955a7307252097e /query.c
parentc2fb38096ea4e75a680e57e103d4a4986aa84c75 (diff)
s/imc/imcb/ for callback functions. Moved things aroundin nogaim.h a
little bit, grouping things by category instead of original Gaim 0.58 filename.
Diffstat (limited to 'query.c')
-rw-r--r--query.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/query.c b/query.c
index e7a55afd..99be2bee 100644
--- a/query.c
+++ b/query.c
@@ -121,7 +121,7 @@ void query_del_by_conn( irc_t *irc, struct im_connection *ic )
}
if( count > 0 )
- imc_log( ic, "Flushed %d unanswered question(s) for this connection.", count );
+ imcb_log( ic, "Flushed %d unanswered question(s) for this connection.", count );
q = query_default( irc );
if( q && q != def )
@@ -139,12 +139,12 @@ void query_answer( irc_t *irc, query_t *q, int ans )
}
if( ans )
{
- imc_log( q->ic, "Accepted: %s", q->question );
+ imcb_log( q->ic, "Accepted: %s", q->question );
q->yes( NULL, q->data );
}
else
{
- imc_log( q->ic, "Rejected: %s", q->question );
+ imcb_log( q->ic, "Rejected: %s", q->question );
q->no( NULL, q->data );
}
q->data = NULL;
@@ -159,7 +159,7 @@ static void query_display( irc_t *irc, query_t *q )
{
if( q->ic )
{
- imc_log( q->ic, "New request: %s\nYou can use the \2yes\2/\2no\2 commands to accept/reject this request.", q->question );
+ imcb_log( q->ic, "New request: %s\nYou can use the \2yes\2/\2no\2 commands to accept/reject this request.", q->question );
}
else
{