# HG changeset patch # User Mikael Berthe # Date 1157800079 -7200 # Node ID 30b7996326535459d7ab50863401156ee816ef20 # Parent 82aaa7afbd037f5bd114f754a94648c0091b9f8b Cosmetics (change a variable name) diff -r 82aaa7afbd03 -r 30b799632653 mcabber/src/commands.c --- a/mcabber/src/commands.c Sat Sep 02 14:59:37 2006 +0200 +++ b/mcabber/src/commands.c Sat Sep 09 13:07:59 2006 +0200 @@ -677,7 +677,7 @@ static void do_group(char *arg) { gpointer group; - guint leave_windowbuddy; + guint leave_buddywindow; if (!*arg) { scr_LogPrint(LPRINT_NORMAL, "Missing parameter."); @@ -692,7 +692,7 @@ // We'll have to redraw the chat window if we're not currently on the group // entry itself, because it means we'll have to leave the current buddy // chat window. - leave_windowbuddy = (group != BUDDATA(current_buddy)); + leave_buddywindow = (group != BUDDATA(current_buddy)); if (!(buddy_gettype(group) & ROSTER_TYPE_GROUP)) { scr_LogPrint(LPRINT_NORMAL, "You need to select a group."); @@ -713,7 +713,7 @@ buddylist_build(); update_roster = TRUE; - if (leave_windowbuddy) scr_ShowBuddyWindow(); + if (leave_buddywindow) scr_ShowBuddyWindow(); } static int send_message_to(const char *jid, const char *msg, const char *subj)