Changeset 5f4eede for query.c


Ignore:
Timestamp:
2008-02-11T23:16:23Z (16 years ago)
Author:
Sven Moritz Hallberg <sm@…>
Branches:
master
Children:
e2b15bb
Parents:
8bd697c
Message:
  • add nonfunctional 'otr forget key' implementation
  • add 'color_encrypted' setting
File:
1 edited

Legend:

Unmodified
Added
Removed
  • query.c

    r8bd697c r5f4eede  
    148148                        irc_usermsg( irc, "Accepted: %s", q->question );
    149149                if(q->yes)
    150                         q->yes( q->ic ? q->ic : irc, q->data );
     150                        q->yes( q->ic ? (gpointer)q->ic : (gpointer)irc, q->data );
    151151        }
    152152        else
     
    157157                        irc_usermsg( irc, "Rejected: %s", q->question );
    158158                if(q->no)
    159                         q->no( q->ic ? q->ic : irc, q->data );
     159                        q->no( q->ic ? (gpointer)q->ic : (gpointer)irc, q->data );
    160160        }
    161161        q->data = NULL;
Note: See TracChangeset for help on using the changeset viewer.