diff options
author | Juan Pablo Ugarte <juanpablougarte@gmai.com> | 2013-01-28 20:28:02 -0300 |
---|---|---|
committer | Juan Pablo Ugarte <juanpablougarte@gmai.com> | 2013-01-31 18:44:16 +0100 |
commit | 56eb5c5edbbf9c64cf0420b01fdbc529bc5e5316 (patch) | |
tree | 3c0700812670796213aa4575eb04880191816ad7 /gladeui/glade-property.c | |
parent | 1aa7a4c10c917f77ff6a3cfa34da6f132f4cee55 (diff) | |
download | glade-56eb5c5edbbf9c64cf0420b01fdbc529bc5e5316.tar.gz |
Reverting all composite templates support until it lands on GTK
Diffstat (limited to 'gladeui/glade-property.c')
-rw-r--r-- | gladeui/glade-property.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gladeui/glade-property.c b/gladeui/glade-property.c index ccdf95f6..08eb6deb 100644 --- a/gladeui/glade-property.c +++ b/gladeui/glade-property.c @@ -1168,10 +1168,9 @@ glade_property_write (GladeProperty * property, g_return_if_fail (GLADE_IS_PROPERTY (property)); g_return_if_fail (node != NULL); - /* This code should work the same for <packing>, <widget> and <template> */ + /* This code should work the same for <packing> and <widget> */ if (!(glade_xml_node_verify_silent (node, GLADE_XML_TAG_PACKING) || - glade_xml_node_verify_silent (node, GLADE_XML_TAG_WIDGET) || - glade_xml_node_verify_silent (node, GLADE_XML_TAG_TEMPLATE))) + glade_xml_node_verify_silent (node, GLADE_XML_TAG_WIDGET))) return; /* Skip properties that are default by original pspec default |