mirror of
https://github.com/kanjitalk755/macemu.git
synced 2025-03-23 14:29:44 +00:00
additional cases handled (untested)
This commit is contained in:
parent
76c1c997ac
commit
bc1e51f80e
@ -1955,7 +1955,7 @@ void display_alert(int title_id, int prefix_id, int button_id, const char *text)
|
||||
GTK_MESSAGE_WARNING,
|
||||
GTK_BUTTONS_NONE,
|
||||
GetString(title_id), NULL);
|
||||
gtk_message_dialog_format_secondary_text(GTK_MESSAGE_DIALOG(dialog), text);
|
||||
gtk_message_dialog_format_secondary_text(GTK_MESSAGE_DIALOG(dialog), "%s", text);
|
||||
gtk_dialog_add_button(GTK_DIALOG(dialog), GetString(button_id), GTK_RESPONSE_CLOSE);
|
||||
g_signal_connect(dialog, "response", G_CALLBACK(dl_destroyed), NULL);
|
||||
gtk_widget_show(dialog);
|
||||
|
@ -1440,7 +1440,7 @@ void display_alert(int title_id, int prefix_id, int button_id, const char *text)
|
||||
GTK_MESSAGE_WARNING,
|
||||
GTK_BUTTONS_NONE,
|
||||
GetString(title_id), NULL);
|
||||
gtk_message_dialog_format_secondary_text(GTK_MESSAGE_DIALOG(dialog), text);
|
||||
gtk_message_dialog_format_secondary_text(GTK_MESSAGE_DIALOG(dialog), "%s", text);
|
||||
gtk_dialog_add_button(GTK_DIALOG(dialog), GetString(button_id), GTK_RESPONSE_CLOSE);
|
||||
g_signal_connect(dialog, "response", G_CALLBACK(dl_destroyed), NULL);
|
||||
gtk_widget_show(dialog);
|
||||
|
@ -2374,7 +2374,7 @@ void display_alert(int title_id, int prefix_id, int button_id, const char *text)
|
||||
GTK_MESSAGE_WARNING,
|
||||
GTK_BUTTONS_NONE,
|
||||
GetString(title_id), NULL);
|
||||
gtk_message_dialog_format_secondary_text(GTK_MESSAGE_DIALOG(dialog), text);
|
||||
gtk_message_dialog_format_secondary_text(GTK_MESSAGE_DIALOG(dialog), "%s", text);
|
||||
gtk_dialog_add_button(GTK_DIALOG(dialog), GetString(button_id), GTK_RESPONSE_CLOSE);
|
||||
g_signal_connect(dialog, "response", G_CALLBACK(dl_destroyed), NULL);
|
||||
gtk_widget_show(dialog);
|
||||
|
@ -1724,7 +1724,7 @@ void display_alert(int title_id, int prefix_id, int button_id, const char *text)
|
||||
GTK_MESSAGE_WARNING,
|
||||
GTK_BUTTONS_NONE,
|
||||
GetString(title_id), NULL);
|
||||
gtk_message_dialog_format_secondary_text(GTK_MESSAGE_DIALOG(dialog), text);
|
||||
gtk_message_dialog_format_secondary_text(GTK_MESSAGE_DIALOG(dialog), "%s", text);
|
||||
gtk_dialog_add_button(GTK_DIALOG(dialog), GetString(button_id), GTK_RESPONSE_CLOSE);
|
||||
g_signal_connect(dialog, "response", G_CALLBACK(dl_destroyed), NULL);
|
||||
gtk_widget_show(dialog);
|
||||
|
Loading…
x
Reference in New Issue
Block a user