diff options
| author | Wilmer van der Gaast <wilmer@gaast.net> | 2011-12-19 11:57:07 +0100 | 
|---|---|---|
| committer | Wilmer van der Gaast <wilmer@gaast.net> | 2011-12-19 11:57:07 +0100 | 
| commit | a0a3de6d5866e101fcc296f5c31735b47164d561 (patch) | |
| tree | d6504f61012590385f5ad1ee314d99e414190a21 /irc.h | |
| parent | 17f057d70b1513710e3d765969205625f0fc7b76 (diff) | |
| parent | c1a58cce5edf4767af5cc040f9528506727a5e13 (diff) | |
C++ compatibility fix. Fixes #873.
Diffstat (limited to 'irc.h')
| -rw-r--r-- | irc.h | 8 | 
1 files changed, 4 insertions, 4 deletions
| @@ -181,7 +181,7 @@ struct irc_channel_funcs  	gboolean (*privmsg)( irc_channel_t *ic, const char *msg );  	gboolean (*join)( irc_channel_t *ic );  	gboolean (*part)( irc_channel_t *ic, const char *msg ); -	gboolean (*topic)( irc_channel_t *ic, const char *new ); +	gboolean (*topic)( irc_channel_t *ic, const char *new_topic );  	gboolean (*invite)( irc_channel_t *ic, irc_user_t *iu );  	gboolean (*_init)( irc_channel_t *ic ); @@ -331,16 +331,16 @@ void irc_send_who( irc_t *irc, GSList *l, const char *channel );  void irc_send_msg( irc_user_t *iu, const char *type, const char *dst, const char *msg, const char *prefix );  void irc_send_msg_raw( irc_user_t *iu, const char *type, const char *dst, const char *msg );  void irc_send_msg_f( irc_user_t *iu, const char *type, const char *dst, const char *format, ... ) G_GNUC_PRINTF( 4, 5 ); -void irc_send_nick( irc_user_t *iu, const char *new ); +void irc_send_nick( irc_user_t *iu, const char *new_nick );  void irc_send_channel_user_mode_diff( irc_channel_t *ic, irc_user_t *iu, -                                      irc_channel_user_flags_t old, irc_channel_user_flags_t new ); +                                      irc_channel_user_flags_t old_flags, irc_channel_user_flags_t new_flags );  void irc_send_invite( irc_user_t *iu, irc_channel_t *ic );  /* irc_user.c */  irc_user_t *irc_user_new( irc_t *irc, const char *nick );  int irc_user_free( irc_t *irc, irc_user_t *iu );  irc_user_t *irc_user_by_name( irc_t *irc, const char *nick ); -int irc_user_set_nick( irc_user_t *iu, const char *new ); +int irc_user_set_nick( irc_user_t *iu, const char *new_nick );  gint irc_user_cmp( gconstpointer a_, gconstpointer b_ );  const char *irc_user_get_away( irc_user_t *iu );  void irc_user_quit( irc_user_t *iu, const char *msg ); | 
