26 lines
910 B
Diff
26 lines
910 B
Diff
--- dia-0.95-pre6/app/commands.c.help 2006-01-27 18:48:45.000000000 +0100
|
|
+++ dia-0.95-pre6/app/commands.c 2006-03-22 16:37:25.000000000 +0100
|
|
@@ -526,7 +526,7 @@
|
|
const char *dentry;
|
|
GError *error = NULL;
|
|
|
|
- helpdir = dia_get_data_directory("help");
|
|
+ helpdir = g_strdup ("/usr/share/gnome/help/dia");
|
|
if (!helpdir) {
|
|
message_warning(_("Could not find help directory"));
|
|
return;
|
|
@@ -554,11 +554,11 @@
|
|
G_DIR_SEPARATOR_S "dia-manual.chm", NULL);
|
|
if (!g_file_test(helpindex, G_FILE_TEST_EXISTS)) {
|
|
helpindex = g_strconcat(helpdir, G_DIR_SEPARATOR_S, dentry,
|
|
- G_DIR_SEPARATOR_S "index.html", NULL);
|
|
+ G_DIR_SEPARATOR_S "dia.xml", NULL);
|
|
}
|
|
#else
|
|
helpindex = g_strconcat(helpdir, G_DIR_SEPARATOR_S, dentry,
|
|
- G_DIR_SEPARATOR_S "index.html", NULL);
|
|
+ G_DIR_SEPARATOR_S "dia.xml", NULL);
|
|
#endif
|
|
bestscore = score;
|
|
}
|