Make HildonEntry:size a G_PARAM_CONSTRUCT property
authorClaudio Saavedra <csaavedra@igalia.com>
Wed, 10 Jun 2009 14:25:23 +0000 (17:25 +0300)
committerClaudio Saavedra <csaavedra@igalia.com>
Wed, 10 Jun 2009 14:25:56 +0000 (17:25 +0300)
* hildon/hildon-entry.c (hildon_entry_class_init): Make HildonEntry:size
a G_PARAM_CONSTRUCT property, to allow the default size to be set.

Fixes: NB#117931 (Theming issues in accounts dialogs)

ChangeLog
hildon/hildon-entry.c

index 5388038..3c51be8 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2009-06-10  Claudio Saavedra  <csaavedra@igalia.com>
+
+       * hildon/hildon-entry.c (hildon_entry_class_init): Make HildonEntry:size
+       a G_PARAM_CONSTRUCT property, to allow the default size to be set.
+
+       Fixes: NB#117931 (Theming issues in accounts dialogs)
+
 2009-06-09  Alejandro G. Castro  <alex@igalia.com>
 
        * hildon/hildon-pannable-area.c,
index 40da60e..58066c2 100644 (file)
@@ -265,7 +265,7 @@ hildon_entry_class_init                         (HildonEntryClass *klass)
             "Size request for the entry",
             HILDON_TYPE_SIZE_TYPE,
             HILDON_SIZE_AUTO_WIDTH | HILDON_SIZE_FINGER_HEIGHT,
-            G_PARAM_WRITABLE));
+            G_PARAM_CONSTRUCT | G_PARAM_WRITABLE));
 
     g_type_class_add_private (klass, sizeof (HildonEntryPrivate));
 }