diff options
-rw-r--r-- | filter/ChangeLog | 5 | ||||
-rw-r--r-- | filter/e-search-bar.h | 13 | ||||
-rw-r--r-- | widgets/misc/e-search-bar.h | 13 |
3 files changed, 13 insertions, 18 deletions
diff --git a/filter/ChangeLog b/filter/ChangeLog index 6c95824a20..445fb67911 100644 --- a/filter/ChangeLog +++ b/filter/ChangeLog @@ -1,5 +1,10 @@ 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. + +2000-11-06 Christopher James Lahey <clahey@helixcode.com> + * Makefile.am: Added e-search-bar.c and e-search-bar.h. * e-search-bar.c, e-search-bar.h: Moved this from diff --git a/filter/e-search-bar.h b/filter/e-search-bar.h index 0b0166afc2..cf015f2ec0 100644 --- a/filter/e-search-bar.h +++ b/filter/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; 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; |