diff options
author | David Malcolm <dmalcolm@redhat.com> | 2004-09-21 09:54:09 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2004-09-21 09:54:09 +0800 |
commit | d57d0b58a25fdcc94e894ff57629a4fbc2f304f1 (patch) | |
tree | cc959a5a2dd02f3bcfec1c7f2911cb85f57095d4 /mail/em-folder-tree-model.c | |
parent | 7bcacf89cb24f10253e3e5d786a796b7ee88bfbc (diff) | |
download | gsoc2013-evolution-d57d0b58a25fdcc94e894ff57629a4fbc2f304f1.tar.gz gsoc2013-evolution-d57d0b58a25fdcc94e894ff57629a4fbc2f304f1.tar.zst gsoc2013-evolution-d57d0b58a25fdcc94e894ff57629a4fbc2f304f1.zip |
Fix a typo setting the root node.
2004-09-21 David Malcolm <dmalcolm@redhat.com>
* em-folder-tree-model.c (em_folder_tree_model_set_selected): Fix
a typo setting the root node.
svn path=/trunk/; revision=27311
Diffstat (limited to 'mail/em-folder-tree-model.c')
-rw-r--r-- | mail/em-folder-tree-model.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/em-folder-tree-model.c b/mail/em-folder-tree-model.c index 4f1a8dda67..15be6d5cfb 100644 --- a/mail/em-folder-tree-model.c +++ b/mail/em-folder-tree-model.c @@ -1146,7 +1146,7 @@ em_folder_tree_model_set_selected (EMFolderTreeModel *model, const char *uri) if (!model->state->children) { root = xmlNewDocNode (model->state, NULL, "tree-state", NULL); - xmlDocSetRootElement (model->state, node); + xmlDocSetRootElement (model->state, root); } else { root = model->state->children; } |