Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 307591 | Differences between
and this patch

Collapse All | Expand All

(-)src/cv_drawing.c (-1 / +1 lines)
Lines 380-386 Link Here
380
    	                event->area.width, event->area.height);	
380
    	                event->area.width, event->area.height);	
381
#else
381
#else
382
	gdk_draw_drawable (	widget->window,
382
	gdk_draw_drawable (	widget->window,
383
                    	widget->style->fg_gc[GTK_WIDGET_STATE(widget)],
383
                    	widget->style->fg_gc[gtk_widget_get_state(widget)],
384
    	                cv.pixmap,
384
    	                cv.pixmap,
385
    	                event->area.x, event->area.y,
385
    	                event->area.x, event->area.y,
386
    	                event->area.x, event->area.y,
386
    	                event->area.x, event->area.y,
(-)src/cv_resize.c (-2 / +2 lines)
Lines 204-213 Link Here
204
                    0,0,widget->allocation.width,0);
204
                    0,0,widget->allocation.width,0);
205
#else
205
#else
206
	gdk_draw_line ( widget->window,
206
	gdk_draw_line ( widget->window,
207
                    widget->style->fg_gc[GTK_WIDGET_STATE(widget)],
207
                    widget->style->fg_gc[gtk_widget_get_state(widget)],
208
                    0,0,0,widget->allocation.height);
208
                    0,0,0,widget->allocation.height);
209
	gdk_draw_line ( widget->window,
209
	gdk_draw_line ( widget->window,
210
                    widget->style->fg_gc[GTK_WIDGET_STATE(widget)],
210
                    widget->style->fg_gc[gtk_widget_get_state(widget)],
211
                    0,0,widget->allocation.width,0);
211
                    0,0,widget->allocation.width,0);
212
#endif
212
#endif
213
	return TRUE;
213
	return TRUE;

Return to bug 307591