diff options
author | JP Rosevear <jpr@ximian.com> | 2001-11-06 08:05:54 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2001-11-06 08:05:54 +0800 |
commit | 9ab4c3e6cdd2e87612543698e56f5b00d77a415c (patch) | |
tree | c8259248acf9618676c7d6541c3fc784db18aef7 /widgets/misc/e-dateedit.h | |
parent | 748fba56030267900cef03332ad4a57b3db2085c (diff) | |
download | gsoc2013-evolution-9ab4c3e6cdd2e87612543698e56f5b00d77a415c.tar.gz gsoc2013-evolution-9ab4c3e6cdd2e87612543698e56f5b00d77a415c.tar.zst gsoc2013-evolution-9ab4c3e6cdd2e87612543698e56f5b00d77a415c.zip |
set both the date and the time of day in one call, creating only a single
2001-11-05 JP Rosevear <jpr@ximian.com>
* e-dateedit.c (e_date_edit_set_date_and_time_of_day): set both
the date and the time of day in one call, creating only a single
changed signal
* e-dateedit.h: add proto
svn path=/trunk/; revision=14602
Diffstat (limited to 'widgets/misc/e-dateedit.h')
-rw-r--r-- | widgets/misc/e-dateedit.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/widgets/misc/e-dateedit.h b/widgets/misc/e-dateedit.h index 49ea443235..8e307c5d45 100644 --- a/widgets/misc/e-dateedit.h +++ b/widgets/misc/e-dateedit.h @@ -119,6 +119,13 @@ void e_date_edit_set_time_of_day (EDateEdit *dedit, gint hour, gint minute); +void e_date_edit_set_date_and_time_of_day (EDateEdit *dedit, + gint year, + gint month, + gint day, + gint hour, + gint minute); + /* Whether we show the date field. */ gboolean e_date_edit_get_show_date (EDateEdit *dedit); void e_date_edit_set_show_date (EDateEdit *dedit, |