diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2013-07-02 22:33:42 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2013-07-02 22:34:27 +0800 |
commit | 0c6e2dd7dd20ea143c6120b49dd75a9f4fbde885 (patch) | |
tree | dbb539eb1c950930ce1936d07ad3dd11f218cf38 | |
parent | d0f3ce33f5881205ab32123462c7be297f837b24 (diff) | |
download | gsoc2013-evolution-0c6e2dd7dd20ea143c6120b49dd75a9f4fbde885.tar gsoc2013-evolution-0c6e2dd7dd20ea143c6120b49dd75a9f4fbde885.tar.gz gsoc2013-evolution-0c6e2dd7dd20ea143c6120b49dd75a9f4fbde885.tar.bz2 gsoc2013-evolution-0c6e2dd7dd20ea143c6120b49dd75a9f4fbde885.tar.lz gsoc2013-evolution-0c6e2dd7dd20ea143c6120b49dd75a9f4fbde885.tar.xz gsoc2013-evolution-0c6e2dd7dd20ea143c6120b49dd75a9f4fbde885.tar.zst gsoc2013-evolution-0c6e2dd7dd20ea143c6120b49dd75a9f4fbde885.zip |
Update evolution-util API docs.
(cherry picked from commit b459f80f1f9f8b0acead7626b3e561d4e486ea0e)
-rw-r--r-- | doc/reference/libeutil/libeutil-sections.txt | 7 | ||||
-rw-r--r-- | e-util/e-table-group-container.h | 4 | ||||
-rw-r--r-- | e-util/e-table-group-leaf.h | 1 |
3 files changed, 9 insertions, 3 deletions
diff --git a/doc/reference/libeutil/libeutil-sections.txt b/doc/reference/libeutil/libeutil-sections.txt index f2ea82264d..ab5d33afe8 100644 --- a/doc/reference/libeutil/libeutil-sections.txt +++ b/doc/reference/libeutil/libeutil-sections.txt @@ -3320,6 +3320,7 @@ e_table_right_click_up e_table_commit_click_to_add e_table_freeze_state_change e_table_thaw_state_change +e_table_is_editing <SUBSECTION Standard> E_TABLE E_IS_TABLE @@ -3336,6 +3337,7 @@ e_table_get_type <TITLE>ETableClickToAdd</TITLE> ETableClickToAdd e_table_click_to_add_commit +e_table_click_to_add_is_editing <SUBSECTION Standard> E_TABLE_CLICK_TO_ADD E_IS_TABLE_CLICK_TO_ADD @@ -3505,6 +3507,7 @@ e_table_group_key_press e_table_group_start_drag ETableGroupLeafFn e_table_group_apply_to_leafs +e_table_group_is_editing <SUBSECTION Standard> E_TABLE_GROUP E_IS_TABLE_GROUP @@ -3523,6 +3526,7 @@ ETableGroupContainerChildNode ETableGroupContainer e_table_group_container_new e_table_group_container_construct +e_table_group_container_is_editing <SUBSECTION Standard> E_TABLE_GROUP_CONTAINER E_IS_TABLE_GROUP_CONTAINER @@ -3539,6 +3543,7 @@ e_table_group_container_get_type <TITLE>ETableGroupLeaf</TITLE> ETableGroupLeaf e_table_group_leaf_new +e_table_group_leaf_is_editing <SUBSECTION Standard> E_TABLE_GROUP_LEAF E_IS_TABLE_GROUP_LEAF @@ -3621,6 +3626,7 @@ e_table_item_compute_location e_table_item_compute_mouse_over e_table_item_get_cell_geometry e_table_item_row_diff +e_table_item_is_editing <SUBSECTION Standard> E_TABLE_ITEM E_IS_TABLE_ITEM @@ -4231,6 +4237,7 @@ e_tree_get_header_item e_tree_set_info_message e_tree_freeze_state_change e_tree_thaw_state_change +e_tree_is_editing <SUBSECTION Standard> E_TREE E_IS_TREE diff --git a/e-util/e-table-group-container.h b/e-util/e-table-group-container.h index f06dc746aa..d5822015cc 100644 --- a/e-util/e-table-group-container.h +++ b/e-util/e-table-group-container.h @@ -132,8 +132,8 @@ void e_table_group_container_construct ETableModel *model, ETableSortInfo *sort_info, gint n); - -gboolean e_table_group_container_is_editing (ETableGroupContainer *etgc); +gboolean e_table_group_container_is_editing + (ETableGroupContainer *etgc); G_END_DECLS diff --git a/e-util/e-table-group-leaf.h b/e-util/e-table-group-leaf.h index 60f0b7fb90..4f3325c919 100644 --- a/e-util/e-table-group-leaf.h +++ b/e-util/e-table-group-leaf.h @@ -103,7 +103,6 @@ ETableGroup * e_table_group_leaf_new (GnomeCanvasGroup *parent, ETableHeader *header, ETableModel *model, ETableSortInfo *sort_info); - gboolean e_table_group_leaf_is_editing (ETableGroupLeaf *etgl); G_END_DECLS |