summaryrefslogtreecommitdiff
path: root/gtk/gtkaccelmap.h
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>2002-01-30 03:07:14 +0000
committerOwen Taylor <otaylor@src.gnome.org>2002-01-30 03:07:14 +0000
commita75a0d494bfcbe80beecafe4f3be894a5e47aacb (patch)
treeeb3e394b783ca1c916ffed5009a6e151b523ed1e /gtk/gtkaccelmap.h
parent36655ffa797750370763cccedf1df1449eb706c1 (diff)
downloadgtk+-a75a0d494bfcbe80beecafe4f3be894a5e47aacb.tar.gz
Consistently use GdkModifierType. (#66950, Mark Patton)
Tue Jan 29 21:50:28 2002 Owen Taylor <otaylor@redhat.com> * gtk/gtkaccelmap.[ch] gtk/gtkbindings.[ch] gtk/gtkwidget.[ch]: Consistently use GdkModifierType. (#66950, Mark Patton) * gtk/gtkimagemenuitem.c (gtk_image_menu_item_new_from_stock): For consistency with gtk_button_new_from_stock(), fall back to gtk_image_menu_item_new_with_mnemnonic(). (#65944, Havoc Pennington) * gtk/gtkitemfactory.[ch] (gtk_item_factory_path_from_widget): Make G_CONST_RETURN. (#68527, Matt Wilson)
Diffstat (limited to 'gtk/gtkaccelmap.h')
-rw-r--r--gtk/gtkaccelmap.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkaccelmap.h b/gtk/gtkaccelmap.h
index 7321079ed6..8b1e5fa669 100644
--- a/gtk/gtkaccelmap.h
+++ b/gtk/gtkaccelmap.h
@@ -29,14 +29,14 @@ G_BEGIN_DECLS
typedef void (*GtkAccelMapForeach) (gpointer data,
const gchar *accel_path,
guint accel_key,
- guint accel_mods,
+ GdkModifierType accel_mods,
gboolean changed);
/* --- public API --- */
void gtk_accel_map_add_entry (const gchar *accel_path,
guint accel_key,
- guint accel_mods);
+ GdkModifierType accel_mods);
gboolean gtk_accel_map_lookup_entry (const gchar *accel_path,
GtkAccelKey *key);
gboolean gtk_accel_map_change_entry (const gchar *accel_path,