ayttm-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Ayttm-commits] CVS: ayttm/src edit_group_window.c,1.11,1.12 progress_wi


From: Colin Leroy <address@hidden>
Subject: [Ayttm-commits] CVS: ayttm/src edit_group_window.c,1.11,1.12 progress_window.c,1.9,1.10 util.c,1.57,1.58
Date: Sun, 23 Mar 2003 08:23:01 -0500

Update of /cvsroot/ayttm/ayttm/src
In directory subversions:/tmp/cvs-serv25598/src

Modified Files:
        edit_group_window.c progress_window.c util.c 
Log Message:
fix bug where group renaming didn't move logs


Index: edit_group_window.c
===================================================================
RCS file: /cvsroot/ayttm/ayttm/src/edit_group_window.c,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- edit_group_window.c 22 Mar 2003 20:40:17 -0000      1.11
+++ edit_group_window.c 23 Mar 2003 13:22:59 -0000      1.12
@@ -116,7 +116,7 @@
 
                /*Ok Button*/
                hbox2=gtk_hbox_new(FALSE,5);
-               button = do_icon_button(g?_("Edit"):_("Add"), tb_edit_xpm, 
edit_group_window);
+               button = do_icon_button(g?_("Save"):_("Add"), tb_edit_xpm, 
edit_group_window);
 
                gtk_signal_connect(GTK_OBJECT(button), "clicked", 
                                                   
GTK_SIGNAL_FUNC(ok_callback), NULL );

Index: progress_window.c
===================================================================
RCS file: /cvsroot/ayttm/ayttm/src/progress_window.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- progress_window.c   22 Mar 2003 20:33:21 -0000      1.9
+++ progress_window.c   23 Mar 2003 13:22:59 -0000      1.10
@@ -29,7 +29,6 @@
 
 #include "progress_window.h"
 
-
 typedef struct {
        int tag;
        GtkWidget * progress_meter;

Index: util.c
===================================================================
RCS file: /cvsroot/ayttm/ayttm/src/util.c,v
retrieving revision 1.57
retrieving revision 1.58
diff -u -r1.57 -r1.58
--- util.c      21 Mar 2003 11:42:05 -0000      1.57
+++ util.c      23 Mar 2003 13:22:59 -0000      1.58
@@ -938,6 +938,12 @@
        update_contact_list();
        write_contact_list();
 
+       for (node = current_group->members; node; node = node->next) {
+               struct contact *c = (struct contact *)node->data;
+               if (c)
+                       rename_nick_log(oldname, c->nick, new_name, c->nick);
+       }
+       
        for( node = accounts; node; node = node->next ) {
                eb_local_account * ela = node->data;
                if (RUN_SERVICE(ela)->rename_group)





reply via email to

[Prev in Thread] Current Thread [Next in Thread]