diff src/window.c @ 1174:0bea79d87065

Drop useless wmclass stuff. Gtk will take care of it and as said in the documentation using gtk_window_set_wmclass() is sort of pointless.
author zas_
date Sun, 23 Nov 2008 16:10:29 +0000
parents 5fe3b8b3a612
children 2518a4a73d89
line wrap: on
line diff
--- a/src/window.c	Sat Nov 22 22:54:51 2008 +0000
+++ b/src/window.c	Sun Nov 23 16:10:29 2008 +0000
@@ -40,7 +40,6 @@
 
 	window_set_icon(window, icon, icon_file);
 	gtk_window_set_role(GTK_WINDOW(window), name);
-	gtk_window_set_wmclass(GTK_WINDOW(window), name, GQ_WMCLASS);
 
 	return window;
 }
@@ -249,7 +248,7 @@
 		}
 
 	path = g_build_filename(options->documentation.helpdir, "README", NULL);
-	help_window = help_window_new(_("Help"), GQ_WMCLASS, "help", path, key);
+	help_window = help_window_new(_("Help"), "help", path, key);
 	g_free(path);
 
 	g_signal_connect(G_OBJECT(help_window), "destroy",