[gtk+/rendering-cleanup: 100/141] style: Remove depth member from GtkStyle



commit b794fcd814a5cb6ce2a5c02339c8b9ecb28d2081
Author: Benjamin Otte <otte redhat com>
Date:   Sat Aug 28 12:08:24 2010 +0200

    style: Remove depth member from GtkStyle

 gtk/gtkstyle.c |    6 ++----
 gtk/gtkstyle.h |    7 +++----
 2 files changed, 5 insertions(+), 8 deletions(-)
---
diff --git a/gtk/gtkstyle.c b/gtk/gtkstyle.c
index 6d20710..4a49b1e 100644
--- a/gtk/gtkstyle.c
+++ b/gtk/gtkstyle.c
@@ -402,7 +402,6 @@ gtk_style_init (GtkStyle *style)
   
   style->attach_count = 0;
   style->colormap = NULL;
-  style->depth = -1;
   
   style->black.red = 0;
   style->black.green = 0;
@@ -488,7 +487,7 @@ gtk_style_class_init (GtkStyleClass *klass)
    * @style: the object which received the signal
    *
    * Emitted when the style has been initialized for a particular
-   * colormap and depth. Connecting to this signal is probably seldom
+   * colormap. Connecting to this signal is probably seldom
    * useful since most of the time applications and widgets only
    * deal with styles that have been already realized.
    *
@@ -506,7 +505,7 @@ gtk_style_class_init (GtkStyleClass *klass)
    * @style: the object which received the signal
    *
    * Emitted when the aspects of the style specific to a particular colormap
-   * and depth are being cleaned up. A connection to this signal can be useful
+   * is being cleaned up. A connection to this signal can be useful
    * if a widget wants to cache objects as object data on #GtkStyle.
    * This signal provides a convenient place to free such cached objects.
    *
@@ -775,7 +774,6 @@ gtk_style_realize (GtkStyle    *style,
                    GdkColormap *colormap)
 {
   style->colormap = g_object_ref (colormap);
-  style->depth = gdk_colormap_get_visual (colormap)->depth;
 
   g_signal_emit (style, realize_signal, 0);
 }
diff --git a/gtk/gtkstyle.h b/gtk/gtkstyle.h
index 0bc8d11..1e7d4ab 100644
--- a/gtk/gtkstyle.h
+++ b/gtk/gtkstyle.h
@@ -104,7 +104,6 @@ struct _GtkStyle
 
   gint attach_count;
 
-  gint depth;
   GdkColormap *colormap;
   PangoFontDescription *private_font_desc; /* Font description for style->private_font or %NULL */
 
@@ -120,9 +119,9 @@ struct _GtkStyleClass
 {
   GObjectClass parent_class;
 
-  /* Initialize for a particular colormap/depth
-   * combination. style->colormap/style->depth will have
-   * been set at this point. Will typically chain to parent.
+  /* Initialize for a particular colormap. style->colormap
+   * will have been set at this point. Will typically chain
+   * to parent.
    */
   void (*realize)               (GtkStyle               *style);
 



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