Adding the missing variable setter in the set_property handler. Fixes NB#54182.
authorMichael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
Mon, 23 Jul 2007 08:48:26 +0000 (08:48 +0000)
committerMichael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
Mon, 23 Jul 2007 08:48:26 +0000 (08:48 +0000)
ChangeLog
src/hildon-date-editor.c

index 27d41ac..33c31b3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2007-07-23  Michael Dominic Kostrzewa  <michael.kostrzewa@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@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.
index a3087f5..e74e722 100644 (file)
@@ -583,6 +583,7 @@ hildon_date_editor_set_property                 (GObject *object,
 
         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);