mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
Gtk3: adapt to changed callback function signature
This commit is contained in:
parent
3065005f05
commit
42264efd1b
@ -77,8 +77,8 @@ GtkCellEditable *gcrd_start_editing (GtkCellRenderer *cell,
|
|||||||
GdkEvent *event,
|
GdkEvent *event,
|
||||||
GtkWidget *widget,
|
GtkWidget *widget,
|
||||||
const gchar *path,
|
const gchar *path,
|
||||||
GdkRectangle *background_area,
|
const GdkRectangle *background_area,
|
||||||
GdkRectangle *cell_area,
|
const GdkRectangle *cell_area,
|
||||||
GtkCellRendererState flags);
|
GtkCellRendererState flags);
|
||||||
|
|
||||||
static void gcrd_show (GncCellRendererPopup *cell,
|
static void gcrd_show (GncCellRendererPopup *cell,
|
||||||
@ -269,8 +269,8 @@ gcrd_start_editing (GtkCellRenderer *cell,
|
|||||||
GdkEvent *event,
|
GdkEvent *event,
|
||||||
GtkWidget *widget,
|
GtkWidget *widget,
|
||||||
const gchar *path,
|
const gchar *path,
|
||||||
GdkRectangle *background_area,
|
const GdkRectangle *background_area,
|
||||||
GdkRectangle *cell_area,
|
const GdkRectangle *cell_area,
|
||||||
GtkCellRendererState flags)
|
GtkCellRendererState flags)
|
||||||
{
|
{
|
||||||
GNC_CELL_RENDERER_POPUP (cell)->editing_canceled = FALSE;
|
GNC_CELL_RENDERER_POPUP (cell)->editing_canceled = FALSE;
|
||||||
|
@ -49,8 +49,8 @@ gcrp_start_editing (GtkCellRenderer *cell,
|
|||||||
GdkEvent *event,
|
GdkEvent *event,
|
||||||
GtkWidget *widget,
|
GtkWidget *widget,
|
||||||
const gchar *path,
|
const gchar *path,
|
||||||
GdkRectangle *background_area,
|
const GdkRectangle *background_area,
|
||||||
GdkRectangle *cell_area,
|
const GdkRectangle *cell_area,
|
||||||
GtkCellRendererState flags);
|
GtkCellRendererState flags);
|
||||||
static void gcrp_show_popup (GncCellRendererPopup *cell,
|
static void gcrp_show_popup (GncCellRendererPopup *cell,
|
||||||
const gchar *path,
|
const gchar *path,
|
||||||
@ -61,7 +61,7 @@ static void gcrp_show_popup (GncCellRendererPopup *cell,
|
|||||||
static void gcrp_hide_popup (GncCellRendererPopup *cell);
|
static void gcrp_hide_popup (GncCellRendererPopup *cell);
|
||||||
static void gcrp_get_size (GtkCellRenderer *cell,
|
static void gcrp_get_size (GtkCellRenderer *cell,
|
||||||
GtkWidget *widget,
|
GtkWidget *widget,
|
||||||
GdkRectangle *cell_area,
|
const GdkRectangle *cell_area,
|
||||||
gint *x_offset,
|
gint *x_offset,
|
||||||
gint *y_offset,
|
gint *y_offset,
|
||||||
gint *width,
|
gint *width,
|
||||||
@ -369,8 +369,8 @@ gcrp_start_editing (GtkCellRenderer *cell,
|
|||||||
GdkEvent *event,
|
GdkEvent *event,
|
||||||
GtkWidget *widget,
|
GtkWidget *widget,
|
||||||
const gchar *path,
|
const gchar *path,
|
||||||
GdkRectangle *background_area,
|
const GdkRectangle *background_area,
|
||||||
GdkRectangle *cell_area,
|
const GdkRectangle *cell_area,
|
||||||
GtkCellRendererState flags)
|
GtkCellRendererState flags)
|
||||||
{
|
{
|
||||||
GncCellRendererPopup *popup;
|
GncCellRendererPopup *popup;
|
||||||
@ -434,13 +434,13 @@ gnc_cell_renderer_popup_hide (GncCellRendererPopup *cell)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
gcrp_get_size (GtkCellRenderer *cell,
|
gcrp_get_size (GtkCellRenderer *cell,
|
||||||
GtkWidget *widget,
|
GtkWidget *widget,
|
||||||
GdkRectangle *cell_area,
|
const GdkRectangle *cell_area,
|
||||||
gint *x_offset,
|
gint *x_offset,
|
||||||
gint *y_offset,
|
gint *y_offset,
|
||||||
gint *width,
|
gint *width,
|
||||||
gint *height)
|
gint *height)
|
||||||
{
|
{
|
||||||
GncCellRendererPopup *popup;
|
GncCellRendererPopup *popup;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user