Changeset 25d1be7
- Timestamp:
- 2005-12-04T00:48:57Z (19 years ago)
- Branches:
- master
- Children:
- e7f46c5, ed59700
- Parents:
- 8f515c8
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
irc.c
r8f515c8 r25d1be7 1510 1510 { 1511 1511 irc_write( irc, ":%s!%s@%s %s %s :%s%s", u->nick, u->user, u->host, 1512 type, to, prefix , line );1512 type, to, prefix ? prefix : "", line ); 1513 1513 } 1514 1514 line = s + 1; -
protocols/nogaim.c
r8f515c8 r25d1be7 381 381 void do_error_dialog( struct gaim_connection *gc, char *msg, char *title ) 382 382 { 383 serv_got_crap( gc, "Error: %s", msg ); 383 if( msg && title ) 384 serv_got_crap( gc, "Error: %s: %s", title, msg ); 385 else if( msg ) 386 serv_got_crap( gc, "Error: %s", msg ); 387 else if( title ) 388 serv_got_crap( gc, "Error: %s", title ); 389 else 390 serv_got_crap( gc, "Error" ); 384 391 } 385 392 … … 698 705 699 706 if( ( u = user_findhandle( gc, handle ) ) ) 700 irc_ msgfrom( gc->irc, u->nick, "\1TYPING 1\1" );707 irc_privmsg( gc->irc, u, "PRIVMSG", gc->irc->nick, NULL, "\1TYPING \1" ); 701 708 } 702 709
Note: See TracChangeset
for help on using the changeset viewer.