From: Oliver Haertel Date: Tue, 6 Aug 2002 13:58:44 +0000 (+0000) Subject: Custom Toolbar 2 X-Git-Tag: before_folder_color~72 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=f9e657cd3826efa6c1471a66bcdf5ae9fb523489 Custom Toolbar 2 --- diff --git a/ChangeLog.claws b/ChangeLog.claws index 315c83380..8be8ae499 100644 --- a/ChangeLog.claws +++ b/ChangeLog.claws @@ -1,3 +1,8 @@ +2002-08-06 [oliver] 0.8.1claws25 + + * src/prefs_actions.[ch] + o new exported function actions_execute + 2002-08-06 [paul] 0.8.1claws24 * sync with 0.8.1cvs4 diff --git a/configure.in b/configure.in index 6a3e2ee75..6e0e6b4cc 100644 --- a/configure.in +++ b/configure.in @@ -8,7 +8,7 @@ MINOR_VERSION=8 MICRO_VERSION=1 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=claws24 +EXTRA_VERSION=claws25 VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION dnl set $target diff --git a/src/prefs_actions.c b/src/prefs_actions.c index d8970a395..a37d10191 100644 --- a/src/prefs_actions.c +++ b/src/prefs_actions.c @@ -998,6 +998,14 @@ void update_compose_actions_menu(GtkItemFactory *ifactory, compose); } +void actions_execute(MainWindow *mainwin, + guint action_nb, + GtkWidget *widget) +{ + mainwin_actions_execute_cb(mainwin, action_nb, widget); +} + + static void update_actions_menu(GtkItemFactory *ifactory, gchar *branch_path, gpointer callback, diff --git a/src/prefs_actions.h b/src/prefs_actions.h index 5db0653ab..e23d080ad 100644 --- a/src/prefs_actions.h +++ b/src/prefs_actions.h @@ -31,4 +31,8 @@ void update_compose_actions_menu (GtkItemFactory *ifactory, Compose *compose); void prefs_actions_open (MainWindow *mainwin); +void actions_execute (MainWindow *mainwin, + guint action_nb, + GtkWidget *widget); + #endif /* __ACTIONS_H__ */