diff options
author | Chris Toshok <toshok@ximian.com> | 2002-11-27 10:10:21 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2002-11-27 10:10:21 +0800 |
commit | 83a54e15a95b22f91b5ef68a2687a7af9f9d1b43 (patch) | |
tree | b4eba3bbdfaa138636b8c58514f6b36577eba0ad /addressbook/gui/component/select-names/e-select-names.h | |
parent | 1c0c2cc2f45e462abcaf2fd9dc2e5542c722ea49 (diff) | |
download | gsoc2013-evolution-83a54e15a95b22f91b5ef68a2687a7af9f9d1b43.tar gsoc2013-evolution-83a54e15a95b22f91b5ef68a2687a7af9f9d1b43.tar.gz gsoc2013-evolution-83a54e15a95b22f91b5ef68a2687a7af9f9d1b43.tar.bz2 gsoc2013-evolution-83a54e15a95b22f91b5ef68a2687a7af9f9d1b43.tar.lz gsoc2013-evolution-83a54e15a95b22f91b5ef68a2687a7af9f9d1b43.tar.xz gsoc2013-evolution-83a54e15a95b22f91b5ef68a2687a7af9f9d1b43.tar.zst gsoc2013-evolution-83a54e15a95b22f91b5ef68a2687a7af9f9d1b43.zip |
use new schema for completion/uris. (uris_listener): same.
2002-11-26 Chris Toshok <toshok@ximian.com>
* gui/component/select-names/e-select-names-manager.c
(read_completion_books_from_db): use new schema for
completion/uris.
(uris_listener): same.
* gui/component/select-names/e-select-names.h: Convert to
GtkDialog from GnomeDialog.
* gui/component/select-names/e-select-names.c: Convert to
GtkDialog from GnomeDialog.
(folder_selected): use new schema for last_used_uri.
(e_select_names_init): same.
(e_select_names_set_default): use pango markup to set
bold/not-bold.
(e_select_names_add_section): don't bother creating an EEntry, we
can use pango and a normal label. This also keeps us from
wrapping "contacts ->" at the '-'.
* gui/component/apps_evolution_addressbook.schemas: new file.
* gui/component/Makefile.am: add the schema stuff.
svn path=/trunk/; revision=18939
Diffstat (limited to 'addressbook/gui/component/select-names/e-select-names.h')
-rw-r--r-- | addressbook/gui/component/select-names/e-select-names.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/addressbook/gui/component/select-names/e-select-names.h b/addressbook/gui/component/select-names/e-select-names.h index d61cf0b388..bbed1d77ee 100644 --- a/addressbook/gui/component/select-names/e-select-names.h +++ b/addressbook/gui/component/select-names/e-select-names.h @@ -22,8 +22,7 @@ #include <glib.h> #include <gtk/gtkwidget.h> -#include <libgnome/gnome-util.h> -#include <libgnomeui/gnome-dialog.h> +#include <gtk/gtkdialog.h> #include <glade/glade.h> #include <gal/e-table/e-table.h> #include <gal/e-table/e-table-scrolled.h> @@ -58,7 +57,7 @@ typedef struct _ESelectNamesFolder ESelectNamesFolder; struct _ESelectNames { - GnomeDialog parent; + GtkDialog parent; /* item specific fields */ GladeXML *gui; @@ -78,7 +77,7 @@ struct _ESelectNames struct _ESelectNamesClass { - GnomeDialogClass parent_class; + GtkDialogClass parent_class; }; |