diff options
author | Chris Toshok <toshok@ximian.com> | 2001-05-16 14:05:29 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2001-05-16 14:05:29 +0800 |
commit | 8743d8c293f709feafcbe4bc8805651bce67c77e (patch) | |
tree | 8c4937c78badc3f3b52b33e354a9c2606a70e2e0 /addressbook/gui/search/e-addressbook-search-dialog.h | |
parent | c3aa0886cb57bedffc5538a77e2e174450aaf95e (diff) | |
download | gsoc2013-evolution-8743d8c293f709feafcbe4bc8805651bce67c77e.tar.gz gsoc2013-evolution-8743d8c293f709feafcbe4bc8805651bce67c77e.tar.zst gsoc2013-evolution-8743d8c293f709feafcbe4bc8805651bce67c77e.zip |
initialize the model and adapter. (button_press): set on the model.
2001-05-15 Chris Toshok <toshok@ximian.com>
* gui/search/e-addressbook-search-dialog.c
(e_addressbook_search_dialog_init): initialize the model and
adapter.
(button_press): set on the model.
(e_addressbook_search_dialog_new): same.
(e_addressbook_search_dialog_set_arg): same.
(e_addressbook_search_dialog_destroy): unref the model and
adapter.
* gui/search/e-addressbook-search-dialog.h (struct
_EAddressbookSearchDialog): add our model and reflow adapter.
svn path=/trunk/; revision=9840
Diffstat (limited to 'addressbook/gui/search/e-addressbook-search-dialog.h')
-rw-r--r-- | addressbook/gui/search/e-addressbook-search-dialog.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/addressbook/gui/search/e-addressbook-search-dialog.h b/addressbook/gui/search/e-addressbook-search-dialog.h index 8fcd23492d..efc928e046 100644 --- a/addressbook/gui/search/e-addressbook-search-dialog.h +++ b/addressbook/gui/search/e-addressbook-search-dialog.h @@ -23,6 +23,8 @@ #include <ebook/e-book.h> +#include "addressbook/gui/widgets/e-addressbook-model.h" +#include "addressbook/gui/widgets/e-addressbook-reflow-adapter.h" #include "filter/rule-context.h" #include "filter/filter-rule.h" @@ -50,6 +52,9 @@ struct _EAddressbookSearchDialog GtkWidget *search; GtkWidget *view; + EAddressbookModel *model; + EAddressbookReflowAdapter *adapter; + RuleContext *context; FilterRule *rule; GtkWidget *scrolled_window; |