diff options
author | Havoc Pennington <hp@redhat.com> | 2001-03-16 20:12:40 +0000 |
---|---|---|
committer | Havoc Pennington <hp@src.gnome.org> | 2001-03-16 20:12:40 +0000 |
commit | 52658cd3dc2ec01fe9cfcb5f9253b00febc8e039 (patch) | |
tree | 8e6c0e02a5385ef57bc341284d4c4bbc7e467d7d /gtk/gtkcalendar.c | |
parent | e7a21a2eec40ddb38e4b27b4fe818dbd20351259 (diff) | |
download | gtk+-52658cd3dc2ec01fe9cfcb5f9253b00febc8e039.tar.gz |
Applied patch from Nils Barth (bug # 51041) to replace "gint" with
2001-03-16 Havoc Pennington <hp@redhat.com>
* Applied patch from Nils Barth (bug # 51041) to
replace "gint" with "gboolean" and 0/1 with TRUE/FALSE
in various places.
Diffstat (limited to 'gtk/gtkcalendar.c')
-rw-r--r-- | gtk/gtkcalendar.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/gtk/gtkcalendar.c b/gtk/gtkcalendar.c index a9fa8ad1a1..05eb0f463a 100644 --- a/gtk/gtkcalendar.c +++ b/gtk/gtkcalendar.c @@ -1449,7 +1449,7 @@ gtk_calendar_draw_focus (GtkWidget *widget) } } -static gint +static gboolean gtk_calendar_expose (GtkWidget *widget, GdkEventExpose *event) { @@ -2161,7 +2161,7 @@ gtk_calendar_display_options (GtkCalendar *calendar, } -gint +gboolean gtk_calendar_select_month (GtkCalendar *calendar, guint month, guint year) @@ -2238,7 +2238,7 @@ gtk_calendar_clear_marks (GtkCalendar *calendar) } } -gint +gboolean gtk_calendar_mark_day (GtkCalendar *calendar, guint day) { @@ -2258,7 +2258,7 @@ gtk_calendar_mark_day (GtkCalendar *calendar, return TRUE; } -gint +gboolean gtk_calendar_unmark_day (GtkCalendar *calendar, guint day) { @@ -2298,7 +2298,7 @@ gtk_calendar_get_date (GtkCalendar *calendar, *day = calendar->selected_day; } -static gint +static gboolean gtk_calendar_button_press (GtkWidget *widget, GdkEventButton *event) { @@ -2337,7 +2337,7 @@ gtk_calendar_button_press (GtkWidget *widget, return FALSE; } -static gint +static gboolean gtk_calendar_motion_notify (GtkWidget *widget, GdkEventMotion *event) { @@ -2379,7 +2379,7 @@ gtk_calendar_motion_notify (GtkWidget *widget, return TRUE; } -static gint +static gboolean gtk_calendar_enter_notify (GtkWidget *widget, GdkEventCrossing *event) { @@ -2419,7 +2419,7 @@ gtk_calendar_enter_notify (GtkWidget *widget, return TRUE; } -static gint +static gboolean gtk_calendar_leave_notify (GtkWidget *widget, GdkEventCrossing *event) { @@ -2625,7 +2625,7 @@ gtk_calendar_destroy (GtkObject *object) (* GTK_OBJECT_CLASS (parent_class)->destroy) (object); } -static gint +static gboolean gtk_calendar_key_press (GtkWidget *widget, GdkEventKey *event) { |