diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-10-11 20:14:43 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-10-11 20:14:43 +0800 |
commit | 10b1915786bbcccf7ebe359a0674eca7ccc6c214 (patch) | |
tree | 730d0c13d03ddb9f036ac2083454d3a4d3062f5f /addressbook/contact-editor | |
parent | 7d0552f48334f81f49c9e93e3ee9e639b0ffe4e0 (diff) | |
download | gsoc2013-evolution-10b1915786bbcccf7ebe359a0674eca7ccc6c214.tar gsoc2013-evolution-10b1915786bbcccf7ebe359a0674eca7ccc6c214.tar.gz gsoc2013-evolution-10b1915786bbcccf7ebe359a0674eca7ccc6c214.tar.bz2 gsoc2013-evolution-10b1915786bbcccf7ebe359a0674eca7ccc6c214.tar.lz gsoc2013-evolution-10b1915786bbcccf7ebe359a0674eca7ccc6c214.tar.xz gsoc2013-evolution-10b1915786bbcccf7ebe359a0674eca7ccc6c214.tar.zst gsoc2013-evolution-10b1915786bbcccf7ebe359a0674eca7ccc6c214.zip |
Fixed the column elements, the no-headers attribute and added a
2000-10-11 Christopher James Lahey <clahey@helixcode.com>
* contact-editor/e-contact-editor-categories.c: Fixed the column
elements, the no-headers attribute and added a cursor-mode=line
attribute.
* gui/component/select-names/e-select-names.c,
gui/widgets/e-addressbook-view.c: Fixed the column elements here.
svn path=/trunk/; revision=5851
Diffstat (limited to 'addressbook/contact-editor')
-rw-r--r-- | addressbook/contact-editor/e-contact-editor-categories.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/addressbook/contact-editor/e-contact-editor-categories.c b/addressbook/contact-editor/e-contact-editor-categories.c index db85466e87..ff58678031 100644 --- a/addressbook/contact-editor/e-contact-editor-categories.c +++ b/addressbook/contact-editor/e-contact-editor-categories.c @@ -221,13 +221,13 @@ e_contact_editor_categories_entry_change (GtkWidget *entry, do_parse_categories(categories); } -#define INITIAL_SPEC "<ETableSpecification no-header=\"1\" draw-grid=\"true\">\ +#define INITIAL_SPEC "<ETableSpecification no-headers=\"true\" draw-grid=\"true\" cursor-mode=\"line\">\ <ETableColumn model_col=\"0\" _title=\" \" expansion=\"0.0\" minimum_width=\"20\" resizable=\"false\" cell=\"checkbox\" compare=\"integer\"/> \ <ETableColumn model_col=\"1\" _title=\"Category\" expansion=\"1.0\" minimum_width=\"20\" resizable=\"true\" cell=\"string\" compare=\"string\"/> \ <ETableState> \ - <column> 0 </column> \ - <column> 1 </column> \ - <grouping> <leaf column=\"1\" ascending=\"1\"/> </grouping> \ + <column source=\"0\"/> \ + <column source=\"1\"/> \ + <grouping> <leaf column=\"1\" ascending=\"1\"/> </grouping> \ </ETableState> \ </ETableSpecification>" |