comparison pidgin/gtkconv-theme.c @ 32727:7ccd24d49904

The variant property is not construct-only.
author Elliott Sales de Andrade <qulogic@pidgin.im>
date Sat, 08 Oct 2011 02:37:14 +0000
parents 459ffa11348e
children f28a09bfe22c
comparison
equal deleted inserted replaced
32726:7353c0c50117 32727:7ccd24d49904
510 properties[PROP_INFO] = pspec; 510 properties[PROP_INFO] = pspec;
511 511
512 /* VARIANT */ 512 /* VARIANT */
513 pspec = g_param_spec_string("variant", "Variant", 513 pspec = g_param_spec_string("variant", "Variant",
514 "The current variant for this theme", 514 "The current variant for this theme",
515 NULL, G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY); 515 NULL, G_PARAM_READWRITE);
516 g_object_class_install_property(obj_class, PROP_VARIANT, pspec); 516 g_object_class_install_property(obj_class, PROP_VARIANT, pspec);
517 properties[PROP_VARIANT] = pspec; 517 properties[PROP_VARIANT] = pspec;
518 518
519 } 519 }
520 520