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

From: subversion at stage.maemo.org subversion at stage.maemo.org
Date: Wed Jan 9 12:07:31 EET 2008
Author: xan
Date: 2008-01-09 12:07:30 +0200 (Wed, 09 Jan 2008)
New Revision: 15019

Modified:
   projects/haf/trunk/hildon-1/ChangeLog
   projects/haf/trunk/hildon-1/src/hildon-color-chooser.c
Log:
2008-01-09  Xan Lopez  <xan.lopez at nokia.com>

	* src/hildon-color-chooser.c (hildon_color_chooser_class_init):

	Add outer_border style property, we use it but don't define it (!).

	Fixes NB#75310


Modified: projects/haf/trunk/hildon-1/ChangeLog
===================================================================
--- projects/haf/trunk/hildon-1/ChangeLog	2008-01-09 07:45:04 UTC (rev 15018)
+++ projects/haf/trunk/hildon-1/ChangeLog	2008-01-09 10:07:30 UTC (rev 15019)
@@ -1,3 +1,11 @@
+2008-01-09  Xan Lopez  <xan.lopez at nokia.com>
+
+	* src/hildon-color-chooser.c (hildon_color_chooser_class_init): 
+
+	Add outer_border style property, we use it but don't define it (!).
+
+	Fixes NB#75310
+
 2007-12-21  Xan Lopez  <xan.lopez at nokia.com>
 
 	* examples/hildon-bread-crumb-trail-example.c (main): 

Modified: projects/haf/trunk/hildon-1/src/hildon-color-chooser.c
===================================================================
--- projects/haf/trunk/hildon-1/src/hildon-color-chooser.c	2008-01-09 07:45:04 UTC (rev 15018)
+++ projects/haf/trunk/hildon-1/src/hildon-color-chooser.c	2008-01-09 10:07:30 UTC (rev 15019)
@@ -274,19 +274,26 @@
     widget_class->motion_notify_event   = hildon_color_chooser_pointer_motion;
 
     gtk_widget_class_install_style_property (widget_class,
-            g_param_spec_boxed ("inner_size",
-                "Inner sizes",
-                "Sizes of SV plane, H bar and spacing",
-                GTK_TYPE_BORDER,
-                G_PARAM_READABLE));
+                                             g_param_spec_boxed ("inner_size",
+                                                                 "Inner sizes",
+                                                                 "Sizes of SV plane, H bar and spacing",
+                                                                 GTK_TYPE_BORDER,
+                                                                 G_PARAM_READABLE));
 
     gtk_widget_class_install_style_property (widget_class,
-            g_param_spec_boxed ("graphic_border",
-                "Graphical borders",
-                "Size of graphical border",
-                GTK_TYPE_BORDER,
-                G_PARAM_READABLE));
+                                             g_param_spec_boxed ("outer_border",
+                                                                 "Outer border",
+                                                                 "The outer border for the chooser",
+                                                                 GTK_TYPE_BORDER,
+                                                                 G_PARAM_READABLE));
 
+    gtk_widget_class_install_style_property (widget_class,
+                                             g_param_spec_boxed ("graphic_border",
+                                                                 "Graphical borders",
+                                                                 "Size of graphical border",
+                                                                 GTK_TYPE_BORDER,
+                                                                 G_PARAM_READABLE));
+
     /**
      * HildonColorChooser:color:
      *


More information about the maemo-commits mailing list