diff options
author | Miguel de Icaza <miguel@gnu.org> | 1999-07-29 12:25:08 +0800 |
---|---|---|
committer | Arturo Espinosa <unammx@src.gnome.org> | 1999-07-29 12:25:08 +0800 |
commit | cabedf4da95562f8372a543840748ea43dff2a91 (patch) | |
tree | 9d15220864e12083fa4747a775400446cd0502d3 /calendar/eventedit.c | |
parent | 094deb7bca96f1dcf97952b93a7c4745cd799ebc (diff) | |
download | gsoc2013-evolution-cabedf4da95562f8372a543840748ea43dff2a91.tar gsoc2013-evolution-cabedf4da95562f8372a543840748ea43dff2a91.tar.gz gsoc2013-evolution-cabedf4da95562f8372a543840748ea43dff2a91.tar.bz2 gsoc2013-evolution-cabedf4da95562f8372a543840748ea43dff2a91.tar.lz gsoc2013-evolution-cabedf4da95562f8372a543840748ea43dff2a91.tar.xz gsoc2013-evolution-cabedf4da95562f8372a543840748ea43dff2a91.tar.zst gsoc2013-evolution-cabedf4da95562f8372a543840748ea43dff2a91.zip |
Make the code not take arguments (sync_cal_to_pilot): Nice event update
1999-07-28 Miguel de Icaza <miguel@gnu.org>
* calendar-pilot-sync.c: Make the code not take arguments
(sync_cal_to_pilot): Nice event update information
* calendar.c (calendar_new): Add Event UID hash table.
(calendar_add_object): Add events to the hash table here.
(calendar_remove_object): Remove events here.
(calendar_object_find_event): Use the hash table here.
* main.c (save_calendar_cmd): The object is already destroyed by
gnome_dialog_run.
* calendar-pilot-sync.c (sync_object_to_pilot): Do not turn
archived bit on.
svn path=/trunk/; revision=1041
Diffstat (limited to 'calendar/eventedit.c')
-rw-r--r-- | calendar/eventedit.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/calendar/eventedit.c b/calendar/eventedit.c index 8a36b94638..027c59839d 100644 --- a/calendar/eventedit.c +++ b/calendar/eventedit.c @@ -60,15 +60,6 @@ event_editor_class_init (EventEditorClass *class) } static GtkWidget * -adjust (GtkWidget *w, gfloat x, gfloat y, gfloat xs, gfloat ys) -{ - GtkWidget *a = gtk_alignment_new (x, y, xs, ys); - - gtk_container_add (GTK_CONTAINER (a), w); - return a; -} - -static GtkWidget * make_spin_button (int val, int low, int high) { GtkAdjustment *adj; |