Add icon to message boxes

This commit is contained in:
Berke Viktor 2012-11-04 22:30:26 +01:00
parent d9bc58cb4c
commit 83189aadfe
1 changed files with 7 additions and 0 deletions

View File

@ -151,6 +151,13 @@ create_msg_dialog (gchar *title, gchar *message)
dialog = gtk_message_dialog_new (NULL, GTK_DIALOG_MODAL, GTK_MESSAGE_INFO, GTK_BUTTONS_CLOSE, message);
gtk_window_set_title (GTK_WINDOW (dialog), title);
/* On Win32 we automatically have the icon. If we try to load it explicitly, it will look ugly for some reason. */
#ifndef WIN32
pixmaps_init ();
gtk_window_set_icon (GTK_WINDOW (dialog), pix_hexchat);
#endif
gtk_dialog_run (GTK_DIALOG (dialog));
gtk_widget_destroy (dialog);
}