Changeset de2f05e
- Timestamp:
- 2007-11-20T09:47:43Z (17 years ago)
- Branches:
- master
- Children:
- cbb5fb7
- Parents:
- a5f76a2
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
skype/skype.c
ra5f76a2 rde2f05e 183 183 struct groupchat *ret; 184 184 185 for( ret = ic-> conversations; ret; ret = ret->next )185 for( ret = ic->groupchats; ret; ret = ret->next ) 186 186 { 187 187 if(strcmp(name, ret->title ) == 0 ) … … 347 347 { 348 348 if(gc) 349 imcb_chat_topic(gc, sd->handle, body );349 imcb_chat_topic(gc, sd->handle, body, 0); 350 350 } 351 351 else if(!strcmp(sd->type, "LEFT")) … … 648 648 static GList *skype_away_states( struct im_connection *ic ) 649 649 { 650 GList *l = NULL;650 static GList *l = NULL; 651 651 int i; 652 652 653 for( i = 0; skype_away_state_list[i].full_name; i ++ ) 654 l = g_list_append( l, (void*) skype_away_state_list[i].full_name ); 653 if( l == NULL ) 654 for( i = 0; skype_away_state_list[i].full_name; i ++ ) 655 l = g_list_append( l, (void*) skype_away_state_list[i].full_name ); 655 656 656 657 return l;
Note: See TracChangeset
for help on using the changeset viewer.