diff options
author | Chris Toshok <toshok@ximian.com> | 2004-07-03 00:03:56 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2004-07-03 00:03:56 +0800 |
commit | 4f74bf09a94e4f503c38e56ad1a5aba507e05d9e (patch) | |
tree | 522625f0805ebd696833765c1e7fb0fea4362fc1 /e-util/e-iterator.h | |
parent | f1be240bfb32c4aba855e2dd1a7ab2446df32094 (diff) | |
download | gsoc2013-evolution-4f74bf09a94e4f503c38e56ad1a5aba507e05d9e.tar.gz gsoc2013-evolution-4f74bf09a94e4f503c38e56ad1a5aba507e05d9e.tar.zst gsoc2013-evolution-4f74bf09a94e4f503c38e56ad1a5aba507e05d9e.zip |
[ fixes #60691 ]
2004-07-02 Chris Toshok <toshok@ximian.com>
[ fixes #60691 ]
* e-iterator.h: rename the "delete" member to
"remove", to fix c++ build.
* e-iterator.c (e_iterator_delete): same.
(e_iterator_class_init): same.
* e-list-iterator.c (e_list_iterator_class_init): same.
(e_list_iterator_remove): same.
svn path=/trunk/; revision=26563
Diffstat (limited to 'e-util/e-iterator.h')
-rw-r--r-- | e-util/e-iterator.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/e-util/e-iterator.h b/e-util/e-iterator.h index 9dae97cc3a..da25bd8ab6 100644 --- a/e-util/e-iterator.h +++ b/e-util/e-iterator.h @@ -41,7 +41,7 @@ struct _EIteratorClass { void (*last) (EIterator *iterator); gboolean (*next) (EIterator *iterator); gboolean (*prev) (EIterator *iterator); - void (*delete) (EIterator *iterator); + void (*remove) (EIterator *iterator); void (*insert) (EIterator *iterator, const void *object, gboolean before); |