summaryrefslogtreecommitdiff
path: root/gtk/scaffolding.c
diff options
context:
space:
mode:
Diffstat (limited to 'gtk/scaffolding.c')
-rw-r--r--gtk/scaffolding.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/gtk/scaffolding.c b/gtk/scaffolding.c
index 07b5c4166..fd076616f 100644
--- a/gtk/scaffolding.c
+++ b/gtk/scaffolding.c
@@ -1514,10 +1514,8 @@ static gboolean nsgtk_history_expose_event(GtkWidget *widget,
current_widget = widget;
current_drawable = widget->window;
- current_gc = gdk_gc_new(current_drawable);
-#ifdef CAIRO_VERSION
+
current_cr = gdk_cairo_create(current_drawable);
-#endif
clip.x0 = event->area.x;
clip.y0 = event->area.y;
@@ -1528,10 +1526,9 @@ static gboolean nsgtk_history_expose_event(GtkWidget *widget,
history_redraw(bw->history, &ctx);
current_widget = NULL;
- g_object_unref(current_gc);
-#ifdef CAIRO_VERSION
+
cairo_destroy(current_cr);
-#endif
+
return FALSE;
}