summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Gorodnichev <[email protected]>2014-10-05 22:13:58 +0400
committerDenis Gorodnichev <[email protected]>2014-10-05 22:13:58 +0400
commit67db37cfac003cb62f085cd38c6a6f59e53efc7b (patch)
treed46df93c882d443263eb61e477b1cfa407155842
parenta61e7a9a75867d7b85b3dde2b1a6fad4c9a7a729 (diff)
downloadmate-power-manager-67db37cfac003cb62f085cd38c6a6f59e53efc7b.tar.bz2
mate-power-manager-67db37cfac003cb62f085cd38c6a6f59e53efc7b.tar.xz
correctly call cairo_destroy
fix memory leak with gtk2 runtime cairo assertion with gtk3
-rw-r--r--src/gpm-graph-widget.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gpm-graph-widget.c b/src/gpm-graph-widget.c
index 44ca047..1f6f9ed 100644
--- a/src/gpm-graph-widget.c
+++ b/src/gpm-graph-widget.c
@@ -1184,7 +1184,7 @@ gpm_graph_widget_expose (GtkWidget *graph, GdkEventExpose *event)
gpm_graph_widget_draw_graph (graph, cr);
-#if GTK_CHECK_VERSION (3, 0, 0)
+#if !GTK_CHECK_VERSION (3, 0, 0)
cairo_destroy (cr);
#endif
return FALSE;