diff options
author | Not Zed <NotZed@Ximian.com> | 2004-03-26 13:10:04 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2004-03-26 13:10:04 +0800 |
commit | 28e3d6dc45dd4ab5e0d34078fdf86f1923d0e177 (patch) | |
tree | 5720e069c633f890b1a390fa96fb3826f7c537bd /filter/filter-option.h | |
parent | aebeb2ef7010d8f72508a6a6f4541f05a942853a (diff) | |
download | gsoc2013-evolution-28e3d6dc45dd4ab5e0d34078fdf86f1923d0e177.tar.gz gsoc2013-evolution-28e3d6dc45dd4ab5e0d34078fdf86f1923d0e177.tar.zst gsoc2013-evolution-28e3d6dc45dd4ab5e0d34078fdf86f1923d0e177.zip |
return the added option. (clone): make sure we set the current option
2004-03-26 Not Zed <NotZed@Ximian.com>
* filter-option.c (filter_option_add): return the added option.
(clone): make sure we set the current option properly on the new
copy. See #56028.
* filtertypes.xml: s/pipe to shell command/pipe to program/
s/shell command/run program/, cleans up the UI a lot.
svn path=/trunk/; revision=25194
Diffstat (limited to 'filter/filter-option.h')
-rw-r--r-- | filter/filter-option.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/filter/filter-option.h b/filter/filter-option.h index 39418868ab..50c132f775 100644 --- a/filter/filter-option.h +++ b/filter/filter-option.h @@ -64,6 +64,6 @@ FilterOption *filter_option_new (void); /* methods */ void filter_option_set_current (FilterOption *option, const char *name); -void filter_option_add (FilterOption *fo, const char *name, const char *title, const char *code); +struct _filter_option *filter_option_add (FilterOption *fo, const char *name, const char *title, const char *code); #endif /* ! _FILTER_OPTION_H */ |