comparison src/editors.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 1646720364cf
children 878718372aca
comparison
equal deleted inserted replaced
1173:52ce0263cb7c 1174:0bea79d87065
169 GtkWidget *hbox; 169 GtkWidget *hbox;
170 gchar *buf; 170 gchar *buf;
171 171
172 vd = g_new0(EditorVerboseData, 1); 172 vd = g_new0(EditorVerboseData, 1);
173 173
174 vd->gd = file_util_gen_dlg(_("Edit command results"), GQ_WMCLASS, "editor_results", 174 vd->gd = file_util_gen_dlg(_("Edit command results"), "editor_results",
175 NULL, FALSE, 175 NULL, FALSE,
176 NULL, ed); 176 NULL, ed);
177 buf = g_strdup_printf(_("Output of %s"), text); 177 buf = g_strdup_printf(_("Output of %s"), text);
178 generic_dialog_add_message(vd->gd, NULL, buf, NULL); 178 generic_dialog_add_message(vd->gd, NULL, buf, NULL);
179 g_free(buf); 179 g_free(buf);