Mercurial > pidgin.yaz
changeset 11775:400b802cd62b
[gaim-migrate @ 14066]
Set the plugin's preference dialog's title to the name of the plugin. I'm sure this isn't very HIGish but it makes sense to me...
committer: Tailor Script <tailor@pidgin.im>
author | Gary Kramlich <grim@reaperworld.com> |
---|---|
date | Sun, 23 Oct 2005 23:41:03 +0000 |
parents | 60fb8b4b61c1 |
children | e66dbfdaea8a |
files | src/gtkplugin.c |
diffstat | 1 files changed, 1 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/gtkplugin.c Sun Oct 23 23:34:52 2005 +0000 +++ b/src/gtkplugin.c Sun Oct 23 23:41:03 2005 +0000 @@ -263,6 +263,7 @@ g_signal_connect(G_OBJECT(dialog), "response", G_CALLBACK(pref_dialog_response_cb), plug); gtk_container_add(GTK_CONTAINER(GTK_DIALOG(dialog)->vbox), box); gtk_window_set_role(GTK_WINDOW(dialog), "plugin_config"); + gtk_window_set_title(GTK_WINDOW(dialog), gaim_plugin_get_name(plug)); gtk_widget_show_all(dialog); g_value_unset(&val); break;