[gtk+/wip/cssvalue: 65/142] stylepropertyimpl: Make shadows unqueryable



commit 82315949eb5eb4fca244c228ac40adfd30cd6c94
Author: Benjamin Otte <otte redhat com>
Date:   Wed Mar 28 01:07:46 2012 +0200

    stylepropertyimpl: Make shadows unqueryable
    
    Normal APIs couldn't use GtkShadow anyway as the type was private.

 gtk/gtkcssstylepropertyimpl.c |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)
---
diff --git a/gtk/gtkcssstylepropertyimpl.c b/gtk/gtkcssstylepropertyimpl.c
index 7861968..a0e9538 100644
--- a/gtk/gtkcssstylepropertyimpl.c
+++ b/gtk/gtkcssstylepropertyimpl.c
@@ -1297,32 +1297,32 @@ _gtk_css_style_property_init_properties (void)
                                                                         PANGO_WEIGHT_NORMAL));
 
   gtk_css_style_property_register        ("text-shadow",
-                                          GTK_TYPE_SHADOW,
+                                          G_TYPE_NONE,
                                           GTK_STYLE_PROPERTY_INHERIT,
                                           shadow_value_parse,
                                           shadow_value_print,
                                           shadow_value_compute,
-                                          query_simple,
+                                          NULL,
                                           NULL,
                                           _gtk_css_value_new_take_shadow (NULL));
 
   gtk_css_style_property_register        ("icon-shadow",
-                                          GTK_TYPE_SHADOW,
+                                          G_TYPE_NONE,
                                           GTK_STYLE_PROPERTY_INHERIT,
                                           shadow_value_parse,
                                           shadow_value_print,
                                           shadow_value_compute,
-                                          query_simple,
+                                          NULL,
                                           NULL,
                                           _gtk_css_value_new_take_shadow (NULL));
 
   gtk_css_style_property_register        ("box-shadow",
-                                          GTK_TYPE_SHADOW,
+                                          G_TYPE_NONE,
                                           0,
                                           shadow_value_parse,
                                           shadow_value_print,
                                           shadow_value_compute,
-                                          query_simple,
+                                          NULL,
                                           NULL,
                                           _gtk_css_value_new_take_shadow (NULL));
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]