diff options
author | Federico Mena Quintero <federico@nuclecu.unam.mx> | 1998-08-14 08:33:01 +0800 |
---|---|---|
committer | Arturo Espinosa <unammx@src.gnome.org> | 1998-08-14 08:33:01 +0800 |
commit | 43fd11d9b80259b3b6ec64de4fdff0767b5611c5 (patch) | |
tree | c0061e68fad9091974b4214d15fd124adbbeb3f2 /calendar/gui/prop.c | |
parent | a6266876c6c829d7862b522651ecca1dda6a1c65 (diff) | |
download | gsoc2013-evolution-43fd11d9b80259b3b6ec64de4fdff0767b5611c5.tar gsoc2013-evolution-43fd11d9b80259b3b6ec64de4fdff0767b5611c5.tar.gz gsoc2013-evolution-43fd11d9b80259b3b6ec64de4fdff0767b5611c5.tar.bz2 gsoc2013-evolution-43fd11d9b80259b3b6ec64de4fdff0767b5611c5.tar.lz gsoc2013-evolution-43fd11d9b80259b3b6ec64de4fdff0767b5611c5.tar.xz gsoc2013-evolution-43fd11d9b80259b3b6ec64de4fdff0767b5611c5.tar.zst gsoc2013-evolution-43fd11d9b80259b3b6ec64de4fdff0767b5611c5.zip |
Doh. Actually recalculate the days using the month and year.
1998-08-13 Federico Mena Quintero <federico@nuclecu.unam.mx>
* gnome-month-item.c (gnome_month_item_set_arg): Doh. Actually
recalculate the days using the month and year.
* main.c: Added "Go to" button to quickly jump to a specific date.
* goto.c: New file that defines the quick go-to date dialog.
* Makefile.am (gnomecal_SOURCES): Added goto.c to the sources.
svn path=/trunk/; revision=317
Diffstat (limited to 'calendar/gui/prop.c')
-rw-r--r-- | calendar/gui/prop.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/calendar/gui/prop.c b/calendar/gui/prop.c index eab5d00be0..58abe2f8db 100644 --- a/calendar/gui/prop.c +++ b/calendar/gui/prop.c @@ -6,13 +6,13 @@ */ #include <config.h> #include <gnome.h> -#include "main.h" #include "gnome-cal.h" +#include "main.h" static GtkWidget *prop_win, *r1; static GtkObject *sa, *ea; -void +static void start_changed (GtkAdjustment *sa, GtkAdjustment *ea) { if (sa->value > 23.0){ @@ -27,7 +27,7 @@ start_changed (GtkAdjustment *sa, GtkAdjustment *ea) gnome_property_box_changed (GNOME_PROPERTY_BOX (prop_win)); } -void +static void end_changed (GtkAdjustment *ea, GtkAdjustment *sa) { if (ea->value < 1.0){ |