From cf028a512f0e6b32fa9e5699b688e3e37668a0a5 Mon Sep 17 00:00:00 2001 From: Nicola Fontana Date: Mon, 11 Jan 2010 14:03:48 +0100 Subject: [PATCH] [AdgTable] s/_cell_extents/_cell_get_extents/ Renamed adg_table_cell_extents() to adg_table_cell_get_extents() to fulfill API guidelines. Fixing issue #8: http://dev.entidi.com/p/adg/issues/8/ --- adg/adg-table.c | 4 ++-- adg/adg-table.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/adg/adg-table.c b/adg/adg-table.c index a5331a2c..4c4dcf7b 100644 --- a/adg/adg-table.c +++ b/adg/adg-table.c @@ -1028,7 +1028,7 @@ adg_table_cell_switch_frame(AdgTableCell *cell, gboolean new_state) } /** - * adg_table_cell_extents: + * adg_table_cell_get_extents: * @cell: a valid #AdgTableCell * * Gets the extents of @cell. This function is useful only after the @@ -1038,7 +1038,7 @@ adg_table_cell_switch_frame(AdgTableCell *cell, gboolean new_state) * Returns: the extents of @cell or %NULL on errors **/ const CpmlExtents * -adg_table_cell_extents(AdgTableCell *cell) +adg_table_cell_get_extents(AdgTableCell *cell) { g_return_val_if_fail(cell != NULL, NULL); diff --git a/adg/adg-table.h b/adg/adg-table.h index 62ac98d7..da263a5e 100644 --- a/adg/adg-table.h +++ b/adg/adg-table.h @@ -108,7 +108,7 @@ gboolean adg_table_cell_has_frame (AdgTableCell *cell); void adg_table_cell_switch_frame (AdgTableCell *cell, gboolean new_state); const CpmlExtents * - adg_table_cell_extents (AdgTableCell *cell); + adg_table_cell_get_extents (AdgTableCell *cell); G_END_DECLS -- 2.11.4.GIT