Changeset d6fdf44


Ignore:
Timestamp:
2008-02-11T20:58:33Z (16 years ago)
Author:
Sven Moritz Hallberg <sm@…>
Branches:
master
Children:
c595308
Parents:
e6cb110
Message:

pass the im_connection as first argument to yes/no handlers

File:
1 edited

Legend:

Unmodified
Added
Removed
  • query.c

    re6cb110 rd6fdf44  
    145145                        irc_usermsg( irc, "Accepted: %s", q->question );
    146146                if(q->yes)
    147                         q->yes( NULL, q->data );
     147                        q->yes( q->ic, q->data );
    148148        }
    149149        else
     
    154154                        irc_usermsg( irc, "Rejected: %s", q->question );
    155155                if(q->no)
    156                         q->no( NULL, q->data );
     156                        q->no( q->ic, q->data );
    157157        }
    158158        q->data = NULL;
Note: See TracChangeset for help on using the changeset viewer.