From: Andrea Zagli Date: Tue, 18 Sep 2012 14:56:23 +0000 (+0200) Subject: Added mktime to GtkFormFieldDateTime::get_tm_from_str to normalize the return value... X-Git-Tag: 0.5.0~6 X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=091ace6dddcba7baaf3e34416c00d4d76b209ab6;p=libgtkform Added mktime to GtkFormFieldDateTime::get_tm_from_str to normalize the return value and fill missing fields. --- diff --git a/libgtkform/fielddatetime.c b/libgtkform/fielddatetime.c index 9810e7c..b5ff8b8 100644 --- a/libgtkform/fielddatetime.c +++ b/libgtkform/fielddatetime.c @@ -763,6 +763,7 @@ struct tm ret->tm_hour = g_date_time_get_hour (gdatetime); ret->tm_min = g_date_time_get_minute (gdatetime); ret->tm_sec = g_date_time_get_second (gdatetime); + mktime (ret); } return ret;