diff options
author | infirit <[email protected]> | 2015-08-03 21:57:50 +0200 |
---|---|---|
committer | infirit <[email protected]> | 2015-08-03 21:57:50 +0200 |
commit | 0c8fd57afb370b8f9ecc2b1fc41c568dbba27a37 (patch) | |
tree | 6f68c6b8d8e2a1f9a5aebef1ef8c3b11fa717e06 /capplets/appearance/appearance-font.c | |
parent | 4a9a87bf8cd3b8c38ef5ccf09c80a533173e895f (diff) | |
download | mate-control-center-0c8fd57afb370b8f9ecc2b1fc41c568dbba27a37.tar.bz2 mate-control-center-0c8fd57afb370b8f9ecc2b1fc41c568dbba27a37.tar.xz |
Use GdkVisual accessor functions instead of direct access
Diffstat (limited to 'capplets/appearance/appearance-font.c')
-rw-r--r-- | capplets/appearance/appearance-font.c | 2 |
1 files changed, 1 insertions, 1 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) |