aboutsummaryrefslogtreecommitdiffstats
path: root/mail/em-folder-tree-model.c
diff options
context:
space:
mode:
authorDavid Malcolm <dmalcolm@redhat.com>2004-09-21 09:54:09 +0800
committerMichael Zucci <zucchi@src.gnome.org>2004-09-21 09:54:09 +0800
commitd57d0b58a25fdcc94e894ff57629a4fbc2f304f1 (patch)
treecc959a5a2dd02f3bcfec1c7f2911cb85f57095d4 /mail/em-folder-tree-model.c
parent7bcacf89cb24f10253e3e5d786a796b7ee88bfbc (diff)
downloadgsoc2013-evolution-d57d0b58a25fdcc94e894ff57629a4fbc2f304f1.tar
gsoc2013-evolution-d57d0b58a25fdcc94e894ff57629a4fbc2f304f1.tar.gz
gsoc2013-evolution-d57d0b58a25fdcc94e894ff57629a4fbc2f304f1.tar.bz2
gsoc2013-evolution-d57d0b58a25fdcc94e894ff57629a4fbc2f304f1.tar.lz
gsoc2013-evolution-d57d0b58a25fdcc94e894ff57629a4fbc2f304f1.tar.xz
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.c2
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;
}