Back out last change, should have gone in on HEAD.
Thu Nov 7 14:59:43 2002 Owen Taylor <otaylor@redhat.com> * tests/testcalendar.c: Back out last change, should have gone in on HEAD.
This commit is contained in:
@@ -1,3 +1,8 @@
|
|||||||
|
Thu Nov 7 14:59:43 2002 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
|
* tests/testcalendar.c: Back out last change, should have gone in
|
||||||
|
on HEAD.
|
||||||
|
|
||||||
Thu Nov 7 14:51:31 2002 Owen Taylor <otaylor@redhat.com>
|
Thu Nov 7 14:51:31 2002 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
* tests/testcalendar.c (calendar_date_to_string):
|
* tests/testcalendar.c (calendar_date_to_string):
|
||||||
|
|||||||
@@ -1,3 +1,8 @@
|
|||||||
|
Thu Nov 7 14:59:43 2002 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
|
* tests/testcalendar.c: Back out last change, should have gone in
|
||||||
|
on HEAD.
|
||||||
|
|
||||||
Thu Nov 7 14:51:31 2002 Owen Taylor <otaylor@redhat.com>
|
Thu Nov 7 14:51:31 2002 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
* tests/testcalendar.c (calendar_date_to_string):
|
* tests/testcalendar.c (calendar_date_to_string):
|
||||||
|
|||||||
@@ -1,3 +1,8 @@
|
|||||||
|
Thu Nov 7 14:59:43 2002 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
|
* tests/testcalendar.c: Back out last change, should have gone in
|
||||||
|
on HEAD.
|
||||||
|
|
||||||
Thu Nov 7 14:51:31 2002 Owen Taylor <otaylor@redhat.com>
|
Thu Nov 7 14:51:31 2002 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
* tests/testcalendar.c (calendar_date_to_string):
|
* tests/testcalendar.c (calendar_date_to_string):
|
||||||
|
|||||||
@@ -1,3 +1,8 @@
|
|||||||
|
Thu Nov 7 14:59:43 2002 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
|
* tests/testcalendar.c: Back out last change, should have gone in
|
||||||
|
on HEAD.
|
||||||
|
|
||||||
Thu Nov 7 14:51:31 2002 Owen Taylor <otaylor@redhat.com>
|
Thu Nov 7 14:51:31 2002 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
* tests/testcalendar.c (calendar_date_to_string):
|
* tests/testcalendar.c (calendar_date_to_string):
|
||||||
|
|||||||
@@ -1,3 +1,8 @@
|
|||||||
|
Thu Nov 7 14:59:43 2002 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
|
* tests/testcalendar.c: Back out last change, should have gone in
|
||||||
|
on HEAD.
|
||||||
|
|
||||||
Thu Nov 7 14:51:31 2002 Owen Taylor <otaylor@redhat.com>
|
Thu Nov 7 14:51:31 2002 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
* tests/testcalendar.c (calendar_date_to_string):
|
* tests/testcalendar.c (calendar_date_to_string):
|
||||||
|
|||||||
@@ -1,3 +1,8 @@
|
|||||||
|
Thu Nov 7 14:59:43 2002 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
|
* tests/testcalendar.c: Back out last change, should have gone in
|
||||||
|
on HEAD.
|
||||||
|
|
||||||
Thu Nov 7 14:51:31 2002 Owen Taylor <otaylor@redhat.com>
|
Thu Nov 7 14:51:31 2002 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
* tests/testcalendar.c (calendar_date_to_string):
|
* tests/testcalendar.c (calendar_date_to_string):
|
||||||
|
|||||||
@@ -21,6 +21,7 @@
|
|||||||
#include <gtk/gtk.h>
|
#include <gtk/gtk.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
#include <time.h>
|
||||||
|
|
||||||
#define DEF_PAD 10
|
#define DEF_PAD 10
|
||||||
#define DEF_PAD_SMALL 5
|
#define DEF_PAD_SMALL 5
|
||||||
@@ -54,15 +55,15 @@ void calendar_date_to_string( CalendarData *data,
|
|||||||
char *buffer,
|
char *buffer,
|
||||||
gint buff_len )
|
gint buff_len )
|
||||||
{
|
{
|
||||||
GDate *date;
|
struct tm tm;
|
||||||
guint year, month, day;
|
time_t time;
|
||||||
|
|
||||||
gtk_calendar_get_date (GTK_CALENDAR(data->window),
|
|
||||||
&year, &month, &day);
|
|
||||||
date = g_date_new_dmy (day, month, year);
|
|
||||||
g_date_strftime (buffer, buff_len-1, "%x", date);
|
|
||||||
|
|
||||||
g_date_free (date);
|
memset (&tm, 0, sizeof (tm));
|
||||||
|
gtk_calendar_get_date (GTK_CALENDAR(data->window),
|
||||||
|
&tm.tm_year, &tm.tm_mon, &tm.tm_mday);
|
||||||
|
tm.tm_year -= TM_YEAR_BASE;
|
||||||
|
time = mktime(&tm);
|
||||||
|
strftime (buffer, buff_len-1, "%x", gmtime(&time));
|
||||||
}
|
}
|
||||||
|
|
||||||
void calendar_set_signal_strings (char *sig_str,
|
void calendar_set_signal_strings (char *sig_str,
|
||||||
|
|||||||
Reference in New Issue
Block a user