1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-02-13 01:44:40 +00:00

(gtk) fix crash reported by Lacrocivious

This commit is contained in:
Charles Kerr 2008-04-29 22:56:44 +00:00
parent b2809267dc
commit 126609cded

View file

@ -120,8 +120,9 @@ askquit( TrCore * core,
gtk_dialog_set_default_response( GTK_DIALOG( wind ),
GTK_RESPONSE_ACCEPT );
gtk_dialog_set_alternative_button_order( GTK_DIALOG( wind ),
GTK_RESPONSE_ACCEPT,
GTK_RESPONSE_CANCEL );
GTK_RESPONSE_ACCEPT,
GTK_RESPONSE_CANCEL,
-1 );
dontask = gtk_check_button_new_with_mnemonic( _("_Don't ask me again") );
stuff->dontask = dontask;