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 /widgets/misc | |
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 'widgets/misc')
-rw-r--r-- | widgets/misc/e-popup-menu.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/widgets/misc/e-popup-menu.h b/widgets/misc/e-popup-menu.h index ed54a632a5..7039d59835 100644 --- a/widgets/misc/e-popup-menu.h +++ b/widgets/misc/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, |