comparison src/gtkrequest.c @ 5485:c103ba09c62a

[gaim-migrate @ 5881] OK goes on the right side. committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Thu, 22 May 2003 16:10:55 +0000
parents f19620d8694f
children 421020171808
comparison
equal deleted inserted replaced
5484:0a392a45e497 5485:c103ba09c62a
106 gtk_window_set_resizable(GTK_WINDOW(dialog), FALSE); 106 gtk_window_set_resizable(GTK_WINDOW(dialog), FALSE);
107 #endif 107 #endif
108 108
109 /* Create the dialog. */ 109 /* Create the dialog. */
110 dialog = gtk_dialog_new_with_buttons("", NULL, 0, 110 dialog = gtk_dialog_new_with_buttons("", NULL, 0,
111 __text_to_stock(ok_text), 0, 111 __text_to_stock(cancel_text), 1,
112 __text_to_stock(cancel_text), 1, 112 __text_to_stock(ok_text), 0,
113 NULL); 113 NULL);
114 data->dialog = dialog; 114 data->dialog = dialog;
115 115
116 g_signal_connect(G_OBJECT(dialog), "response", 116 g_signal_connect(G_OBJECT(dialog), "response",
117 G_CALLBACK(__input_response_cb), data); 117 G_CALLBACK(__input_response_cb), data);
118 118