diff options
author | Nat Friedman <nat@nat.org> | 1999-01-20 15:01:10 +0800 |
---|---|---|
committer | Nat Friedman <nat@src.gnome.org> | 1999-01-20 15:01:10 +0800 |
commit | e79ebe3019e4e30b6105f2a36b0372f8ff51bc93 (patch) | |
tree | f19847918794e93eabd8df60e2926379d5220dad /calendar/gui/prop.c | |
parent | d2ef9770157ef4c8832cd330a91818d0ae929ff2 (diff) | |
download | gsoc2013-evolution-e79ebe3019e4e30b6105f2a36b0372f8ff51bc93.tar gsoc2013-evolution-e79ebe3019e4e30b6105f2a36b0372f8ff51bc93.tar.gz gsoc2013-evolution-e79ebe3019e4e30b6105f2a36b0372f8ff51bc93.tar.bz2 gsoc2013-evolution-e79ebe3019e4e30b6105f2a36b0372f8ff51bc93.tar.lz gsoc2013-evolution-e79ebe3019e4e30b6105f2a36b0372f8ff51bc93.tar.xz gsoc2013-evolution-e79ebe3019e4e30b6105f2a36b0372f8ff51bc93.tar.zst gsoc2013-evolution-e79ebe3019e4e30b6105f2a36b0372f8ff51bc93.zip |
Only trap printable characters such that hotkeys work. (UNSELECT_TIMEOUT):
1999-01-20 Nat Friedman <nat@nat.org>
* gncal-full-day.c (gncal_full_day_key_press): Only trap printable
characters such that hotkeys work.
(UNSELECT_TIMEOUT): Changed to 0. Much saner behavior.
* prop.c (properties): Connect gnome_help_pbox_display to the
GnomePropertyBox help button.
svn path=/trunk/; revision=615
Diffstat (limited to 'calendar/gui/prop.c')
-rw-r--r-- | calendar/gui/prop.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/calendar/gui/prop.c b/calendar/gui/prop.c index 4ae7359f06..1e771812f9 100644 --- a/calendar/gui/prop.c +++ b/calendar/gui/prop.c @@ -498,6 +498,10 @@ create_colors_page (void) void properties (GtkWidget *toplevel) { + static GnomeHelpMenuEntry help_entry = { NULL, "properties" }; + + help_entry.name = gnome_app_id; + if (prop_win) return; @@ -517,6 +521,10 @@ properties (GtkWidget *toplevel) gtk_signal_connect (GTK_OBJECT (prop_win), "apply", (GtkSignalFunc) prop_apply, NULL); + gtk_signal_connect (GTK_OBJECT (prop_win), "help", + GTK_SIGNAL_FUNC (gnome_help_pbox_display), + &help_entry); + gtk_widget_show_all (prop_win); } |