diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-11-07 06:07:48 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-11-07 06:07:48 +0800 |
commit | f2178aee93cf94dbc14c34628ca4671e348d7a2f (patch) | |
tree | bce2c4907f55899509c0e877629ffcbd38ebea9a /widgets | |
parent | dbc4e091133eee525a8b7c0fd449dcca6a5c719f (diff) | |
download | gsoc2013-evolution-f2178aee93cf94dbc14c34628ca4671e348d7a2f.tar gsoc2013-evolution-f2178aee93cf94dbc14c34628ca4671e348d7a2f.tar.gz gsoc2013-evolution-f2178aee93cf94dbc14c34628ca4671e348d7a2f.tar.bz2 gsoc2013-evolution-f2178aee93cf94dbc14c34628ca4671e348d7a2f.tar.lz gsoc2013-evolution-f2178aee93cf94dbc14c34628ca4671e348d7a2f.tar.xz gsoc2013-evolution-f2178aee93cf94dbc14c34628ca4671e348d7a2f.tar.zst gsoc2013-evolution-f2178aee93cf94dbc14c34628ca4671e348d7a2f.zip |
Fixed the argument comment. Removed an old enum that's not used here.
2000-11-06 Christopher James Lahey <clahey@helixcode.com>
* e-search-bar.h: Fixed the argument comment. Removed an old enum
that's not used here.
svn path=/trunk/; revision=6457
Diffstat (limited to 'widgets')
-rw-r--r-- | widgets/misc/e-search-bar.h | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/widgets/misc/e-search-bar.h b/widgets/misc/e-search-bar.h index 0b0166afc2..cf015f2ec0 100644 --- a/widgets/misc/e-search-bar.h +++ b/widgets/misc/e-search-bar.h @@ -32,8 +32,10 @@ extern "C" { * * The following arguments are available: * - * name type read/write description - * -------------------------------------------------------------------------------- + * name type read/write description + * --------------------------------------------------------------------------------- + * option_choice int RW Which option choice is currently selected. + * text string RW Text in the entry box. */ #define E_SEARCH_BAR_TYPE (e_search_bar_get_type ()) @@ -42,13 +44,6 @@ extern "C" { #define E_IS_SEARCH_BAR(obj) (GTK_CHECK_TYPE ((obj), E_SEARCH_BAR_TYPE)) #define E_IS_SEARCH_BAR_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((obj), E_SEARCH_BAR_TYPE)) -typedef enum { - E_SEARCH_BAR_NONE, /* initialized to this */ - E_SEARCH_BAR_TABLE, - E_SEARCH_BAR_MINICARD -} ESearchBarType; - - typedef struct { char *text; int id; |