diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-10-19 03:38:52 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-10-19 03:38:52 +0800 |
commit | 8fefb8df4b9f1901537ab31cefc3e44e86f4d099 (patch) | |
tree | 271a38cef9dda302534353ed77be3c680ded88d2 /addressbook/gui | |
parent | c03848ecdf2e370aaed618044f042d93fcda5f5c (diff) | |
download | gsoc2013-evolution-8fefb8df4b9f1901537ab31cefc3e44e86f4d099.tar gsoc2013-evolution-8fefb8df4b9f1901537ab31cefc3e44e86f4d099.tar.gz gsoc2013-evolution-8fefb8df4b9f1901537ab31cefc3e44e86f4d099.tar.bz2 gsoc2013-evolution-8fefb8df4b9f1901537ab31cefc3e44e86f4d099.tar.lz gsoc2013-evolution-8fefb8df4b9f1901537ab31cefc3e44e86f4d099.tar.xz gsoc2013-evolution-8fefb8df4b9f1901537ab31cefc3e44e86f4d099.tar.zst gsoc2013-evolution-8fefb8df4b9f1901537ab31cefc3e44e86f4d099.zip |
Change NAME_OR_ORG to return the email address if both name and
2000-10-18 Christopher James Lahey <clahey@helixcode.com>
* backend/ebook/e-card-simple.c: Change NAME_OR_ORG to return the
email address if both name and organization are taken.
* gui/component/select-names/e-select-names.c: Fixed up the spec
strings in this class. Removed the "cursor_mode" argument to
ETable since it's part of the spec now.
svn path=/trunk/; revision=6003
Diffstat (limited to 'addressbook/gui')
-rw-r--r-- | addressbook/gui/component/select-names/e-select-names.c | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/addressbook/gui/component/select-names/e-select-names.c b/addressbook/gui/component/select-names/e-select-names.c index 611f6a76ff..e0ff5f6519 100644 --- a/addressbook/gui/component/select-names/e-select-names.c +++ b/addressbook/gui/component/select-names/e-select-names.c @@ -87,19 +87,19 @@ e_select_names_class_init (ESelectNamesClass *klass) object_class->destroy = e_select_names_destroy; } -#define SPEC "<ETableSpecification no-headers=\"true\"> \ - <ETableColumn model_col= \"34\" _title=\"Name\" expansion=\"1.0\" minimum_width=\"20\" resizable=\"true\" cell=\"string\" compare=\"string\"/> \ +#define SPEC "<ETableSpecification no-headers=\"true\" cursor-mode=\"line\"> \ + <ETableColumn model_col= \"35\" _title=\"Name\" expansion=\"1.0\" minimum_width=\"20\" resizable=\"true\" cell=\"string\" compare=\"string\"/> \ <ETableState> \ <column source=\"0\"/> \ <grouping> <leaf column=\"0\" ascending=\"true\"/> </grouping> \ </ETableState> \ </ETableSpecification>" -#define SPEC2 "<ETableSpecification no-headers=\"true\"> \ +#define SPEC2 "<ETableSpecification no-headers=\"true\" cursor-mode=\"line\"> \ <ETableColumn model_col= \"0\" _title=\"Name\" expansion=\"1.0\" minimum_width=\"20\" resizable=\"true\" cell=\"string\" compare=\"string\"/> \ <ETableState> \ <column source=\"0\"/> \ - <grouping> </grouping> \ + <grouping> <leaf column=\"0\" ascending=\"true\"/> </grouping> \ </ETableState> \ </ETableSpecification>" @@ -139,10 +139,6 @@ e_addressbook_create_ebook_table(char *name, char *string1, char *string2, int n g_free(filename); table = e_table_scrolled_new (model, NULL, SPEC, NULL); - gtk_object_set(GTK_OBJECT(table), - "cursor_mode", E_TABLE_CURSOR_LINE, - NULL); - gtk_object_set_data(GTK_OBJECT(table), "model", model); return table; } @@ -336,10 +332,6 @@ e_select_names_add_section(ESelectNames *e_select_names, char *name, char *id, E gtk_signal_connect(GTK_OBJECT(etable), "double_click", GTK_SIGNAL_FUNC(remove_address), child); - gtk_object_set(GTK_OBJECT(etable), - "cursor_mode", E_TABLE_CURSOR_LINE, - NULL); - child->model = model; child->source = source; gtk_object_ref(GTK_OBJECT(child->model)); |