[maemo-commits] [maemo-commits] r12778 - in projects/haf/trunk/hildon-1: . src

From: subversion at stage.maemo.org subversion at stage.maemo.org
Date: Mon Jul 23 11:48:27 EEST 2007
Author: mdk
Date: 2007-07-23 11:48:26 +0300 (Mon, 23 Jul 2007)
New Revision: 12778

Modified:
   projects/haf/trunk/hildon-1/ChangeLog
   projects/haf/trunk/hildon-1/src/hildon-date-editor.c
Log:
Adding the missing variable setter in the set_property handler. Fixes NB#54182.


Modified: projects/haf/trunk/hildon-1/ChangeLog
===================================================================
--- projects/haf/trunk/hildon-1/ChangeLog	2007-07-23 08:43:49 UTC (rev 12777)
+++ projects/haf/trunk/hildon-1/ChangeLog	2007-07-23 08:48:26 UTC (rev 12778)
@@ -1,5 +1,10 @@
 2007-07-23  Michael Dominic Kostrzewa  <michael.kostrzewa at nokia.com> 
 
+	* src/hildon-date-editor.c: Adding the missing variable setter in the
+	set_property handler. Fixes NB#54182.
+
+2007-07-23  Michael Dominic Kostrzewa  <michael.kostrzewa at nokia.com> 
+
 	* src/hildon-window.h: Changing the long key press time from 1500ms to
 	800ms as requested in NB#63700. I have a bad feeling about this, let's
 	see... Fixes NB#63700.

Modified: projects/haf/trunk/hildon-1/src/hildon-date-editor.c
===================================================================
--- projects/haf/trunk/hildon-1/src/hildon-date-editor.c	2007-07-23 08:43:49 UTC (rev 12777)
+++ projects/haf/trunk/hildon-1/src/hildon-date-editor.c	2007-07-23 08:48:26 UTC (rev 12778)
@@ -583,6 +583,7 @@
 
         case PROP_MIN_YEAR:
             val = g_value_get_uint (value);
+            priv->min_year = val;
             /* Clamp current year */
             if (hildon_date_editor_get_year (editor) < priv->min_year)
                 hildon_date_editor_set_year (editor, priv->min_year);


More information about the maemo-commits mailing list