diff options
author | Dan Winship <danw@src.gnome.org> | 2000-09-09 00:04:56 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2000-09-09 00:04:56 +0800 |
commit | 412024362d002e4d3bd6809659516d6fb800b282 (patch) | |
tree | 3d68c4d188c89a657b6dbdd70068bce8751a7af0 /e-util | |
parent | 701cbac178b95c516269e8f908c69387745499ba (diff) | |
download | gsoc2013-evolution-412024362d002e4d3bd6809659516d6fb800b282.tar gsoc2013-evolution-412024362d002e4d3bd6809659516d6fb800b282.tar.gz gsoc2013-evolution-412024362d002e4d3bd6809659516d6fb800b282.tar.bz2 gsoc2013-evolution-412024362d002e4d3bd6809659516d6fb800b282.tar.lz gsoc2013-evolution-412024362d002e4d3bd6809659516d6fb800b282.tar.xz gsoc2013-evolution-412024362d002e4d3bd6809659516d6fb800b282.tar.zst gsoc2013-evolution-412024362d002e4d3bd6809659516d6fb800b282.zip |
remove consts from the EPopupMenu structure: the caller may want to modify
* e-popup-menu.h: remove consts from the EPopupMenu structure: the
caller may want to modify its own EPopupMenu before calling
e_popup_menu_run.
svn path=/trunk/; revision=5261
Diffstat (limited to 'e-util')
-rw-r--r-- | e-util/ChangeLog | 6 | ||||
-rw-r--r-- | e-util/e-popup-menu.h | 8 |
2 files changed, 10 insertions, 4 deletions
diff --git a/e-util/ChangeLog b/e-util/ChangeLog index ddec5e90a4..2c1e3a902a 100644 --- a/e-util/ChangeLog +++ b/e-util/ChangeLog @@ -1,3 +1,9 @@ +2000-09-08 Dan Winship <danw@helixcode.com> + + * e-popup-menu.h: remove consts from the EPopupMenu structure: the + caller may want to modify its own EPopupMenu before calling + e_popup_menu_run. + 2000-09-07 Lauris Kaplinski <lauris@helixcode.com> * e-dialog-widgets.c (e_dialog_editable_get): Use UTF-8 diff --git a/e-util/e-popup-menu.h b/e-util/e-popup-menu.h index ed54a632a5..7039d59835 100644 --- a/e-util/e-popup-menu.h +++ b/e-util/e-popup-menu.h @@ -5,10 +5,10 @@ #include <gtk/gtkwidget.h> typedef struct { - char const * const name; - char const * const pixname; - void (*fn)(GtkWidget *widget, void *closure); - int disable_mask; + char *name; + char *pixname; + void (*fn) (GtkWidget *widget, void *closure); + int disable_mask; } EPopupMenu; GtkMenu *e_popup_menu_create (EPopupMenu *menu_list, |