diff src/window.c @ 728:5042236af960

Replace hardcoded "/" by G_DIR_SEPARATOR_S where applicable.
author zas_
date Wed, 21 May 2008 11:46:19 +0000
parents fbebf5cf4a55
children 391a9e3336db
line wrap: on
line diff
--- a/src/window.c	Wed May 21 11:45:29 2008 +0000
+++ b/src/window.c	Wed May 21 11:46:19 2008 +0000
@@ -189,7 +189,7 @@
 		return;
 		}
 
-	help_browser_command(result, GQ_HTMLDIR "/index.html");
+	help_browser_command(result, GQ_HTMLDIR G_DIR_SEPARATOR_S "index.html");
 
 	g_free(result);
 }
@@ -223,7 +223,7 @@
 		}
 
 	help_window = help_window_new(_("Help"), GQ_WMCLASS, "help",
-				      GQ_HELPDIR "/README", key);
+				      GQ_HELPDIR G_DIR_SEPARATOR_S "README", key);
 
 	g_signal_connect(G_OBJECT(help_window), "destroy",
 			 G_CALLBACK(help_window_destroy_cb), NULL);