Removing the bug-fixed entries that were actually resolved as WONTFIX. Removing a...
authorMichael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
Mon, 16 Apr 2007 07:35:16 +0000 (07:35 +0000)
committerMichael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
Mon, 16 Apr 2007 07:35:16 +0000 (07:35 +0000)
ChangeLog
debian/changelog
src/hildon-date-editor.c

index f83fb18..b93f446 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2007-04-16  Michael Dominic K.  <mdk@mdk.am> 
+
+       * debian/changelog: Removing the bug-fixed entries that were actually
+       resolved as WONTFIX.
+
+       * src/hildon-date-editor.c: Removing a redundant check. Fixes
+       NB#54182.
+
 2007-04-13  Xan Lopez  <xan.lopez@nokia.com>
 
        * src/hildon-bread-crumb-trail.c:
index 1135a27..0a3332b 100644 (file)
@@ -8,22 +8,16 @@ libhildon (1.0.0-1) stable; urgency=low
   * License change to LGPL version 2.1 or later
   * Adding examples for many widgets
 
-  * Fixes: NB#47891 hildon_program_get_is_topmost doesn't work correctly
   * Fixes: NB#49043 Build fails due to duplicate definition of INVALID_CHAR
   * Fixes: NB#49810 Errors in hildon-libs
-  * Fixes: NB#28070 hildon banners do not truncate content
   * Fixes: NB#47751 Tap and hold of Home key minimize applications but does not close the application menu
-  * Fixes: NB#49292 hildon-cancel-note needs to grant access to the label inside the note
-  * Fixes: NB#49586 Memory leak in hildon_vvolumebar_new routine
   * Fixes: NB#46434 HildonWindow: inconsistent memory management
-  * Fixes: NB#41012 hiding/showing toolbar in HildonWindow is not behaving in a consistent way
   * Fixes: NB#30265 Warning from hildonlibs build
   * Fixes: NB#47751 Tap and hold of Home key minimize applications but does not close the application menu
   * Fixes: NB#47989 Not possible to set empty title for HildonWindow
   * Fixes: NB#50496 While quickly tapping the same Edit button, the message is displayed differently.
   * Fixes: NB#51736 Enhancement in hildon_caption_set_label_text()
   * Fixes: NB#50854 application menu closes when mouse released
-  * Fixes: NB#52928 Application crashes when the hildon_helper_set_insensitive_message called more than 3 times on the same widget
   
  -- Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>  Thu, 29 Mar 2007 16:36:27 +0300
 
index 07e8162..c9ace76 100644 (file)
@@ -583,8 +583,6 @@ hildon_date_editor_set_property                 (GObject *object,
 
         case PROP_MIN_YEAR:
             val = g_value_get_uint (value);
-            g_return_if_fail (val > priv->max_year);
-            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);
@@ -592,7 +590,6 @@ hildon_date_editor_set_property                 (GObject *object,
 
         case PROP_MAX_YEAR:
             val = g_value_get_uint (value);
-            g_return_if_fail (val < priv->min_year);
             priv->max_year = val;
             /* Clamp current year */
             if (hildon_date_editor_get_year (editor) > priv->max_year)