tRelevant message boxes now display the proper "question" icon on Win32. - vaccinewars - be a doctor and try to vaccinate the world
(HTM) git clone git://src.adamsgaard.dk/vaccinewars
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit f6413a01369c0f249ab0695496bcf2e2281b0e57
(DIR) parent 4687e3b7de9fb80a030de1ba1144530b4a95454f
(HTM) Author: Ben Webb <ben@salilab.org>
Date: Fri, 5 Apr 2002 13:44:40 +0000
Relevant message boxes now display the proper "question" icon on Win32.
Diffstat:
M src/gtkport/gtkport.c | 2 ++
1 file changed, 2 insertions(+), 0 deletions(-)
---
(DIR) diff --git a/src/gtkport/gtkport.c b/src/gtkport/gtkport.c
t@@ -4941,6 +4941,8 @@ gint GtkMessageBox(GtkWidget *parent, const gchar *Text,
Options |= MB_ICONWARNING; break;
case GTK_MESSAGE_ERROR:
Options |= MB_ICONERROR; break;
+ case GTK_MESSAGE_QUESTION:
+ Options |= MB_ICONQUESTION; break;
default:
}