2004-12-30 [colin] 0.9.13cvs23
authorColin Leroy <colin@colino.net>
Thu, 30 Dec 2004 14:10:23 +0000 (14:10 +0000)
committerColin Leroy <colin@colino.net>
Thu, 30 Dec 2004 14:10:23 +0000 (14:10 +0000)
* src/account.c
Fix prototypes - patch by Alfons

ChangeLog.claws
PATCHSETS
configure.ac
src/account.c

index 4817b115bc449ef6444bb8dae8ca7fe04040e93c..a59b89679d78aaad958358ae78b0623e14e77501 100644 (file)
@@ -1,3 +1,8 @@
+2004-12-30 [colin]     0.9.13cvs23
+
+       * src/account.c
+               Fix prototypes - patch by Alfons
+
 2004-12-30 [paul]      0.9.13cvs22
 
        * ChangeLog
index f83def158f7c304cc3cbc47e5ef3edac035d64a8..ec9e5d11570e0336d4b4c378415914bccf31f653 100644 (file)
--- a/PATCHSETS
+++ b/PATCHSETS
 ( cvs diff -u -r 1.465 -r 1.466 src/compose.c; ) > 0.9.13cvs20.patchset
 ( cvs diff -u -r 1.124 -r 1.125 AUTHORS; cvs diff -u -r 1.451 -r 1.452 ChangeLog; cvs diff -u -r 1.446 -r 1.447 ChangeLog.jp; cvs diff -u -r 1.19 -r 1.20 src/action.c; ) > 0.9.13cvs21.patchset
 ( cvs diff -u -r 1.452 -r 1.453 ChangeLog; cvs diff -u -r 1.447 -r 1.448 ChangeLog.jp; cvs diff -u -r 1.54 -r 1.55 NEWS; cvs diff -u -r 1.76 -r 1.77 src/account.c; ) > 0.9.13cvs22.patchset
+( cvs diff -u -r 1.77 -r 1.78 src/account.c; ) > 0.9.13cvs23.patchset
index 33b4fc443769e63e1eb13b1ddc1a8ab689184729..91c0c9abce7af7f528568dad5544f40ccf149c0f 100644 (file)
@@ -11,7 +11,7 @@ MINOR_VERSION=9
 MICRO_VERSION=13
 INTERFACE_AGE=0
 BINARY_AGE=0
-EXTRA_VERSION=22
+EXTRA_VERSION=23
 EXTRA_RELEASE=
 
 if test \( $EXTRA_VERSION -eq 0 \) -o \( "x$EXTRA_RELEASE" != "x" \); then
index 07c74628ac135d2a928fefc9c8951e60ec7f7586..10b693370ea85145fd7ead3abaf7eb6dbd0b669f 100644 (file)
@@ -81,16 +81,16 @@ static GdkPixmap *checkboxoffxpmmask;
 
 static void account_edit_create                (void);
 
-static void account_edit_prefs         (void);
-static void account_delete             (void);
-static void account_clone              (void);
+static void account_edit_prefs         (GtkWidget *widget, gpointer data);
+static void account_delete             (GtkWidget *widget, gpointer data);
+static void account_clone              (GtkWidget *widget, gpointer data);
 
-static void account_up                 (void);
-static void account_down               (void);
+static void account_up                 (GtkWidget *widget, gpointer data);
+static void account_down               (GtkWidget *widget, gpointer data);
 
-static void account_set_default                (void);
+static void account_set_default                (GtkWidget *widget, gpointer data);
 
-static void account_edit_close         (void);
+static void account_edit_close         (GtkWidget *widget, gpointer data);
 
 static gint account_delete_event       (GtkWidget      *widget,
                                         GdkEventAny    *event,
@@ -698,7 +698,7 @@ static void account_edit_create(void)
        edit_account.close_btn = close_btn;
 }
 
-static void account_edit_prefs(void)
+static void account_edit_prefs(GtkWidget *widget, gpointer data)
 {
        GtkCList *clist = GTK_CLIST(edit_account.clist);
        PrefsAccount *ac_prefs;
@@ -739,7 +739,7 @@ static gboolean account_delete_references_func(GNode *node, gpointer data)
 #define ACP_FDUP(fld) ac_clon->fld = ((ac_prefs->fld) != NULL)?\
                                     g_strdup(ac_prefs->fld): NULL
 #define ACP_FASSIGN(fld) ac_clon->fld = ac_prefs->fld
-static void account_clone(void)
+static void account_clone(GtkWidget *widget, gpointer data)
 {
        GtkCList *clist = GTK_CLIST(edit_account.clist);
        gint row;
@@ -886,7 +886,7 @@ static void account_clone(void)
 #undef ACP_FDUP
 #undef ACP_FASSIGN
 
-static void account_delete(void)
+static void account_delete(GtkWidget *widget, gpointer data)
 {
        GtkCList *clist = GTK_CLIST(edit_account.clist);
        PrefsAccount *ac_prefs;
@@ -927,7 +927,7 @@ static void account_delete(void)
        }
 }
 
-static void account_up(void)
+static void account_up(GtkWidget *widget, gpointer data)
 {
        GtkCList *clist = GTK_CLIST(edit_account.clist);
        gint row;
@@ -939,7 +939,7 @@ static void account_up(void)
                gtk_clist_row_move(clist, row, row - 1);
 }
 
-static void account_down(void)
+static void account_down(GtkWidget *widget, gpointer data)
 {
        GtkCList *clist = GTK_CLIST(edit_account.clist);
        gint row;
@@ -951,7 +951,7 @@ static void account_down(void)
                gtk_clist_row_move(clist, row, row + 1);
 }
 
-static void account_set_default(void)
+static void account_set_default(GtkWidget *widget, gpointer data)
 {
        GtkCList *clist = GTK_CLIST(edit_account.clist);
        gint row;
@@ -969,7 +969,7 @@ static void account_set_default(void)
        main_window_reflect_prefs_all();
 }
 
-static void account_edit_close(void)
+static void account_edit_close(GtkWidget *widget, gpointer data)
 {
        account_list_set();
        account_write_config_all();
@@ -991,7 +991,7 @@ static void account_edit_close(void)
 static gint account_delete_event(GtkWidget *widget, GdkEventAny *event,
                                 gpointer data)
 {
-       account_edit_close();
+       account_edit_close(NULL, NULL);
        return TRUE;
 }
 
@@ -999,7 +999,7 @@ static void account_selected(GtkCList *clist, gint row, gint column,
                             GdkEvent *event, gpointer data)
 {
        if (event && event->type == GDK_2BUTTON_PRESS) {
-               account_edit_prefs();
+               account_edit_prefs(NULL, NULL);
                return;
        }
 
@@ -1026,7 +1026,7 @@ static void account_key_pressed(GtkWidget *widget, GdkEventKey *event,
                                gpointer data)
 {
        if (event && event->keyval == GDK_Escape)
-               account_edit_close();
+               account_edit_close(NULL, NULL);
 }
 
 /* set one CList row or add new row */