Changeset 84b045d for irc.c


Ignore:
Timestamp:
2007-04-16T01:03:08Z (17 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
6bbb939
Parents:
c2fb3809
Message:

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.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • irc.c

    rc2fb3809 r84b045d  
    10371037        else if( c && c->ic && c->ic->acc && c->ic->acc->prpl )
    10381038        {
    1039                 return( bim_chat_msg( c, s, 0 ) );
     1039                return( imc_chat_msg( c, s, 0 ) );
    10401040        }
    10411041       
     
    10521052       
    10531053        u->sendbuf[u->sendbuf_len-2] = 0; /* Cut off the last newline */
    1054         bim_buddy_msg( u->ic, u->handle, u->sendbuf, u->sendbuf_flags );
     1054        imc_buddy_msg( u->ic, u->handle, u->sendbuf, u->sendbuf_flags );
    10551055       
    10561056        g_free( u->sendbuf );
     
    11041104        else
    11051105        {
    1106                 bim_buddy_msg( u->ic, u->handle, msg, flags );
     1106                imc_buddy_msg( u->ic, u->handle, msg, flags );
    11071107        }
    11081108}
Note: See TracChangeset for help on using the changeset viewer.