Don't export _gtk_cell_renderer_calc_offset

This is just a private convenience function, and exporting _-prefixed
functions doesn't work with our libtool setup. Just do the 3 line
calculation in gail.
This commit is contained in:
Matthias Clasen
2010-11-09 08:15:06 -05:00
parent f114efcd10
commit 88366ad5fe
4 changed files with 19 additions and 16 deletions

View File

@ -646,7 +646,7 @@ gtk_cell_renderer_get_size (GtkCellRenderer *cell,
if (cell_area)
_gtk_cell_renderer_calc_offset (cell, cell_area, gtk_widget_get_direction (widget),
request.width, request.height, x_offset, y_offset);
request.width, request.height, x_offset, y_offset);
}
/**