aboutsummaryrefslogtreecommitdiffstats
path: root/widgets
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2004-05-12 11:50:33 +0800
committerMichael Zucci <zucchi@src.gnome.org>2004-05-12 11:50:33 +0800
commit2e3c52fbef7ca35f85d3002571d9daffc3337258 (patch)
tree232ba74cf9edfcde5fd45ae99830fc5eaf59d457 /widgets
parent2d456880ac86fd20297a06bdf6c8e8bc84a00355 (diff)
downloadgsoc2013-evolution-2e3c52fbef7ca35f85d3002571d9daffc3337258.tar
gsoc2013-evolution-2e3c52fbef7ca35f85d3002571d9daffc3337258.tar.gz
gsoc2013-evolution-2e3c52fbef7ca35f85d3002571d9daffc3337258.tar.bz2
gsoc2013-evolution-2e3c52fbef7ca35f85d3002571d9daffc3337258.tar.lz
gsoc2013-evolution-2e3c52fbef7ca35f85d3002571d9daffc3337258.tar.xz
gsoc2013-evolution-2e3c52fbef7ca35f85d3002571d9daffc3337258.tar.zst
gsoc2013-evolution-2e3c52fbef7ca35f85d3002571d9daffc3337258.zip
duh, use the right node pointer for title and secondary text.
2004-05-12 Not Zed <NotZed@Ximian.com> * e-error.c (ee_load): duh, use the right node pointer for title and secondary text. svn path=/trunk/; revision=25873
Diffstat (limited to 'widgets')
-rw-r--r--widgets/misc/ChangeLog3
-rw-r--r--widgets/misc/e-error.c6
2 files changed, 6 insertions, 3 deletions
diff --git a/widgets/misc/ChangeLog b/widgets/misc/ChangeLog
index b8bd494a42..02fb54a1e3 100644
--- a/widgets/misc/ChangeLog
+++ b/widgets/misc/ChangeLog
@@ -1,5 +1,8 @@
2004-05-12 Not Zed <NotZed@Ximian.com>
+ * e-error.c (ee_load): duh, use the right node pointer for title
+ and secondary text.
+
* e-system-errors.xml: make the Because cases the same.
* e-system-errors.xml.h: add for translators.
diff --git a/widgets/misc/e-error.c b/widgets/misc/e-error.c
index 0caceb37d1..0aceed624f 100644
--- a/widgets/misc/e-error.c
+++ b/widgets/misc/e-error.c
@@ -154,7 +154,7 @@ static void
ee_load(const char *path)
{
xmlDocPtr doc;
- xmlNodePtr root, error, scan, node;
+ xmlNodePtr root, error, scan;
struct _e_error *e;
struct _e_error_button *lastbutton;
struct _e_error_table *table;
@@ -223,12 +223,12 @@ ee_load(const char *path)
xmlFree(tmp);
}
} else if (!strcmp(scan->name, "secondary")) {
- if ((tmp = xmlNodeGetContent(node))) {
+ if ((tmp = xmlNodeGetContent(scan))) {
e->secondary = g_strdup(_(tmp));
xmlFree(tmp);
}
} else if (!strcmp(scan->name, "title")) {
- if ((tmp = xmlNodeGetContent(node))) {
+ if ((tmp = xmlNodeGetContent(scan))) {
e->title = g_strdup(_(tmp));
xmlFree(tmp);
}