diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2013-06-28 23:44:27 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2013-07-02 22:34:08 +0800 |
commit | 46b7a9961fc0606941dc0e2a2edf4a1383e3fa25 (patch) | |
tree | 156226055dca51700dfb2625f1f916df738516db /e-util/e-table-column-specification.h | |
parent | a6b1bc0c1ed2acea8a1e053560826e26a7f1246c (diff) | |
download | gsoc2013-evolution-46b7a9961fc0606941dc0e2a2edf4a1383e3fa25.tar.gz gsoc2013-evolution-46b7a9961fc0606941dc0e2a2edf4a1383e3fa25.tar.zst gsoc2013-evolution-46b7a9961fc0606941dc0e2a2edf4a1383e3fa25.zip |
Add e_table_column_specification_equal().
Compares two ETableColumnSpecification instances for equality, which
just means they both refer to the same model column number.
Diffstat (limited to 'e-util/e-table-column-specification.h')
-rw-r--r-- | e-util/e-table-column-specification.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/e-util/e-table-column-specification.h b/e-util/e-table-column-specification.h index 68ded2e6c4..1790d2a42a 100644 --- a/e-util/e-table-column-specification.h +++ b/e-util/e-table-column-specification.h @@ -81,6 +81,9 @@ struct _ETableColumnSpecificationClass { GType e_table_column_specification_get_type (void) G_GNUC_CONST; ETableColumnSpecification * e_table_column_specification_new (void); +gboolean e_table_column_specification_equal + (ETableColumnSpecification *spec_a, + ETableColumnSpecification *spec_b); void e_table_column_specification_load_from_node (ETableColumnSpecification *state, const xmlNode *node); |