comparison src/ui_tabcomp.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 e812b1a7adda
children 8b89e3ff286b
comparison
equal deleted inserted replaced
1173:52ce0263cb7c 1174:0bea79d87065
880 gtk_window_present(GTK_WINDOW(GENERIC_DIALOG(td->fd)->dialog)); 880 gtk_window_present(GTK_WINDOW(GENERIC_DIALOG(td->fd)->dialog));
881 return; 881 return;
882 } 882 }
883 883
884 title = (td->fd_title) ? td->fd_title : _("Select path"); 884 title = (td->fd_title) ? td->fd_title : _("Select path");
885 td->fd = file_dialog_new(title, GQ_WMCLASS, "select_path", td->entry, 885 td->fd = file_dialog_new(title, "select_path", td->entry,
886 tab_completion_select_cancel_cb, td); 886 tab_completion_select_cancel_cb, td);
887 file_dialog_add_button(td->fd, GTK_STOCK_OK, NULL, 887 file_dialog_add_button(td->fd, GTK_STOCK_OK, NULL,
888 tab_completion_select_ok_cb, TRUE); 888 tab_completion_select_ok_cb, TRUE);
889 889
890 generic_dialog_add_message(GENERIC_DIALOG(td->fd), NULL, title, NULL); 890 generic_dialog_add_message(GENERIC_DIALOG(td->fd), NULL, title, NULL);