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

From: subversion at stage.maemo.org subversion at stage.maemo.org
Date: Mon Apr 16 10:35:19 EEST 2007
Author: mdk
Date: 2007-04-16 10:35:16 +0300 (Mon, 16 Apr 2007)
New Revision: 11038

Modified:
   projects/haf/trunk/hildon-1/ChangeLog
   projects/haf/trunk/hildon-1/debian/changelog
   projects/haf/trunk/hildon-1/src/hildon-date-editor.c
Log:
Removing the bug-fixed entries that were actually resolved as WONTFIX.
Removing a redundant check in date-editor. Fixes NB#54182.


Modified: projects/haf/trunk/hildon-1/ChangeLog
===================================================================
--- projects/haf/trunk/hildon-1/ChangeLog	2007-04-16 07:31:54 UTC (rev 11037)
+++ projects/haf/trunk/hildon-1/ChangeLog	2007-04-16 07:35:16 UTC (rev 11038)
@@ -1,3 +1,11 @@
+2007-04-16  Michael Dominic K.  <mdk at 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 at nokia.com>
 
 	* src/hildon-bread-crumb-trail.c:

Modified: projects/haf/trunk/hildon-1/debian/changelog
===================================================================
--- projects/haf/trunk/hildon-1/debian/changelog	2007-04-16 07:31:54 UTC (rev 11037)
+++ projects/haf/trunk/hildon-1/debian/changelog	2007-04-16 07:35:16 UTC (rev 11038)
@@ -8,22 +8,16 @@
   * 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 at nokia.com>  Thu, 29 Mar 2007 16:36:27 +0300
 

Modified: projects/haf/trunk/hildon-1/src/hildon-date-editor.c
===================================================================
--- projects/haf/trunk/hildon-1/src/hildon-date-editor.c	2007-04-16 07:31:54 UTC (rev 11037)
+++ projects/haf/trunk/hildon-1/src/hildon-date-editor.c	2007-04-16 07:35:16 UTC (rev 11038)
@@ -583,8 +583,6 @@
 
         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 @@
 
         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)


More information about the maemo-commits mailing list