From: Andrea Zagli Date: Thu, 10 Mar 2011 18:02:27 +0000 (+0100) Subject: Normalized date/time returned in GtkFormField::get_tm_from_str. X-Git-Tag: 0.1.6~8 X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=3b33ebeb7ff335c2e8f0f60de4978d7a4bdca8f8;p=libgtkform Normalized date/time returned in GtkFormField::get_tm_from_str. --- diff --git a/configure.ac b/configure.ac index 8236d18..4682b8c 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ(2.59) -AC_INIT([libgtkform], [0.1.5], [azagli@libero.it]) +AC_INIT([libgtkform], [0.1.6], [azagli@libero.it]) AC_CONFIG_SRCDIR([src/form.c]) AC_CONFIG_HEADER([config.h]) diff --git a/src/fielddatetime.c b/src/fielddatetime.c index c7108f1..9b52786 100644 --- a/src/fielddatetime.c +++ b/src/fielddatetime.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2010 Andrea Zagli + * Copyright (C) 2005-2011 Andrea Zagli * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -635,6 +635,11 @@ struct tm return NULL; } + if (ret != NULL) + { + mktime (ret); + } + return ret; } diff --git a/src/widgettextview.c b/src/widgettextview.c index 2378219..18928d3 100644 --- a/src/widgettextview.c +++ b/src/widgettextview.c @@ -93,7 +93,7 @@ gchar GtkTextIter start; GtkTextIter end; - w = gtk_form_widget_get_widget (fwidget); + w = gtk_form_widget_get_widget (fwidget); buf = gtk_text_view_get_buffer (GTK_TEXT_VIEW (w)); gtk_text_buffer_get_bounds (buf, &start, &end);