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/gui/component | |
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/gui/component')
-rw-r--r-- | addressbook/gui/component/select-names/e-select-names.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/addressbook/gui/component/select-names/e-select-names.c b/addressbook/gui/component/select-names/e-select-names.c index f6960c4e7e..a1286566bc 100644 --- a/addressbook/gui/component/select-names/e-select-names.c +++ b/addressbook/gui/component/select-names/e-select-names.c @@ -90,7 +90,7 @@ e_select_names_class_init (ESelectNamesClass *klass) #define SPEC "<ETableSpecification no-headers=\"true\"> \ <ETableColumn model_col= \"34\" _title=\"Name\" expansion=\"1.0\" minimum_width=\"20\" resizable=\"true\" cell=\"string\" compare=\"string\"/> \ <ETableState> \ - <column> 0 </column> \ + <column source=\"0\"/> \ <grouping> <leaf column=\"1\" ascending=\"1\"/> </grouping> \ </ETableState> \ </ETableSpecification>" @@ -98,7 +98,7 @@ e_select_names_class_init (ESelectNamesClass *klass) #define SPEC2 "<ETableSpecification no-headers=\"true\"> \ <ETableColumn model_col= \"0\" _title=\"Name\" expansion=\"1.0\" minimum_width=\"20\" resizable=\"true\" cell=\"string\" compare=\"string\"/> \ <ETableState> \ - <column> 0 </column> \ + <column source=\"0\"/> \ <grouping> </grouping> \ </ETableState> \ </ETableSpecification>" |