summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAlex Valavanis <valavanisalex@gmail.com>2011-06-29 19:40:44 +0000
committerAlex Valavanis <valavanisalex@gmail.com>2011-06-29 19:40:44 +0000
commit1d33fc06c1f022dfd996fc86e4d09daf8c318f5f (patch)
tree3952dd761b306320cd294ef642605ea7454a72f6 /src
parentFilters. Typos in the recently modified and added filters. (diff)
parentCorrected gdl pointer type error (diff)
downloadinkscape-1d33fc06c1f022dfd996fc86e4d09daf8c318f5f.tar.gz
inkscape-1d33fc06c1f022dfd996fc86e4d09daf8c318f5f.zip
Corrected gdl pointer type error
(bzr r10390)
Diffstat (limited to 'src')
-rw-r--r--src/libgdl/gdl-dock-item-grip.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libgdl/gdl-dock-item-grip.c b/src/libgdl/gdl-dock-item-grip.c
index f4f628b5d..2513313ef 100644
--- a/src/libgdl/gdl-dock-item-grip.c
+++ b/src/libgdl/gdl-dock-item-grip.c
@@ -127,7 +127,7 @@ gdl_dock_item_grip_expose (GtkWidget *widget,
GdlDockItemGrip *grip;
GdkRectangle title_area;
GdkRectangle expose_area;
- GtkStyle *bg_style;
+ GdkGC *bg_style;
gint layout_width;
gint layout_height;
gint text_x;
@@ -142,6 +142,7 @@ gdl_dock_item_grip_expose (GtkWidget *widget,
gtk_widget_get_style (widget)->dark_gc[widget->state] :
gtk_widget_get_style (widget)->mid_gc[widget->state]);
+
gdk_draw_rectangle (GDK_DRAWABLE (widget->window), bg_style, TRUE,
1, 0, widget->allocation.width - 1, widget->allocation.height);