summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--capplets/appearance/appearance-font.c2
-rw-r--r--capplets/common/theme-thumbnail.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/capplets/appearance/appearance-font.c b/capplets/appearance/appearance-font.c
index 78d079e1..21d41e58 100644
--- a/capplets/appearance/appearance-font.c
+++ b/capplets/appearance/appearance-font.c
@@ -257,7 +257,7 @@ static void setup_font_sample(GtkWidget* darea, Antialiasing antialiasing, Hinti
height = ascent + descent + 2;
#if !GTK_CHECK_VERSION (3, 0, 0)
- pixmap = gdk_pixmap_new (NULL, width, height, visual->depth);
+ pixmap = gdk_pixmap_new (NULL, width, height, gdk_visual_get_depth (visual));
#endif
#if GTK_CHECK_VERSION (3, 0, 0)
diff --git a/capplets/common/theme-thumbnail.c b/capplets/common/theme-thumbnail.c
index 397a009f..ea371482 100644
--- a/capplets/common/theme-thumbnail.c
+++ b/capplets/common/theme-thumbnail.c
@@ -116,7 +116,7 @@ static GdkPixmap* draw_window_on_pixbuf(GtkWidget* widget)
visual = gtk_widget_get_visual(widget);
#if !GTK_CHECK_VERSION (3, 0, 0)
- pixmap = gdk_pixmap_new(NULL, width, height, visual->depth);
+ pixmap = gdk_pixmap_new(NULL, width, height, gdk_visual_get_depth (visual));
gdk_drawable_set_colormap(GDK_DRAWABLE(pixmap), gtk_widget_get_colormap(widget));
#endif