No real changes, just remove some unnecessary casts.
Use correct GdkRectangle* type for wxDataViewCustomRenderer::xxx_area members instead of casting them to and from void*. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62592 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
c2a738e372
commit
70884c6fc8
@ -12,6 +12,8 @@
|
||||
#ifndef _WX_GTK_DVRENDERERS_H_
|
||||
#define _WX_GTK_DVRENDERERS_H_
|
||||
|
||||
typedef struct _GdkRectangle GdkRectangle;
|
||||
|
||||
// ---------------------------------------------------------
|
||||
// wxDataViewTextRenderer
|
||||
// ---------------------------------------------------------
|
||||
@ -124,9 +126,9 @@ public:
|
||||
GtkCellRenderer *m_text_renderer;
|
||||
GdkWindow *window;
|
||||
GtkWidget *widget;
|
||||
void *background_area;
|
||||
void *cell_area;
|
||||
void *expose_area;
|
||||
GdkRectangle *background_area;
|
||||
GdkRectangle *cell_area;
|
||||
GdkRectangle *expose_area;
|
||||
int flags;
|
||||
|
||||
protected:
|
||||
|
@ -1224,10 +1224,10 @@ gtk_wx_cell_renderer_render (GtkCellRenderer *renderer,
|
||||
|
||||
cell->window = window;
|
||||
cell->widget = widget;
|
||||
cell->background_area = (void*) background_area;
|
||||
cell->cell_area = (void*) cell_area;
|
||||
cell->expose_area = (void*) expose_area;
|
||||
cell->flags = (int) flags;
|
||||
cell->background_area = background_area;
|
||||
cell->cell_area = cell_area;
|
||||
cell->expose_area = expose_area;
|
||||
cell->flags = flags;
|
||||
|
||||
GdkRectangle rect;
|
||||
gtk_wx_cell_renderer_get_size (renderer, widget, cell_area,
|
||||
@ -2064,19 +2064,19 @@ void wxDataViewCustomRenderer::RenderText( const wxString &text, int xoffset,
|
||||
g_object_set_property( G_OBJECT(m_text_renderer), "text", &gvalue );
|
||||
g_value_unset( &gvalue );
|
||||
|
||||
((GdkRectangle*) cell_area)->x += xoffset;
|
||||
((GdkRectangle*) cell_area)->width -= xoffset;
|
||||
cell_area->x += xoffset;
|
||||
cell_area->width -= xoffset;
|
||||
|
||||
gtk_cell_renderer_render( m_text_renderer,
|
||||
window,
|
||||
widget,
|
||||
(GdkRectangle*) background_area,
|
||||
(GdkRectangle*) cell_area,
|
||||
(GdkRectangle*) expose_area,
|
||||
background_area,
|
||||
cell_area,
|
||||
expose_area,
|
||||
(GtkCellRendererState) flags );
|
||||
|
||||
((GdkRectangle*) cell_area)->x -= xoffset;
|
||||
((GdkRectangle*) cell_area)->width += xoffset;
|
||||
cell_area->x -= xoffset;
|
||||
cell_area->width += xoffset;
|
||||
#endif
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user