diff options
| author | Christopher James Lahey <clahey@helixcode.com> | 2000-10-11 20:08:55 +0800 |
|---|---|---|
| committer | Chris Lahey <clahey@src.gnome.org> | 2000-10-11 20:08:55 +0800 |
| commit | 6a93e105a2b8ae4140b292e019fb7a0524f223ed (patch) | |
| tree | 0d3cc6dc5d8991961a7741d89bba65948f1cd1a4 /widgets | |
| parent | 14e38f068da7255d7df240269d2b4f955315031f (diff) | |
| download | gsoc2013-evolution-6a93e105a2b8ae4140b292e019fb7a0524f223ed.tar.gz gsoc2013-evolution-6a93e105a2b8ae4140b292e019fb7a0524f223ed.tar.zst gsoc2013-evolution-6a93e105a2b8ae4140b292e019fb7a0524f223ed.zip | |
Fixed the parity on the cursor-mode check.
2000-10-11 Christopher James Lahey <clahey@helixcode.com>
* e-table-specification.c: Fixed the parity on the cursor-mode
check.
svn path=/trunk/; revision=5847
Diffstat (limited to 'widgets')
| -rw-r--r-- | widgets/table/e-table-specification.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/widgets/table/e-table-specification.c b/widgets/table/e-table-specification.c index d95c5147c8..f44212755b 100644 --- a/widgets/table/e-table-specification.c +++ b/widgets/table/e-table-specification.c @@ -119,7 +119,7 @@ e_table_specification_load_from_node (ETableSpecification *specification, specification->cursor_mode = E_TABLE_CURSOR_SIMPLE; temp = e_xml_get_string_prop_by_name(node, "cursor-mode"); - if (temp && strcasecmp(temp, "line")) { + if (temp && !strcasecmp(temp, "line")) { specification->cursor_mode = E_TABLE_CURSOR_LINE; } g_free(temp); |
