Author: bgbnbigben
Date: 2011-03-17 04:21:04 -0700 (Thu, 17 Mar 2011)
New Revision: 8517
Log:
Reversed the previous revision's reversal of button ordering in fltk::choice(),
as it was decided in fltk.development
(http://fltk.org/newsgroups.php?s10812+gfltk.development+v10819+T0) that this
would be best.
Modified:
trunk/src/message.cxx
Modified: trunk/src/message.cxx
===================================================================
--- trunk/src/message.cxx 2011-03-16 12:30:52 UTC (rev 8516)
+++ trunk/src/message.cxx 2011-03-17 11:21:04 UTC (rev 8517)
@@ -399,7 +399,7 @@
if (fltk::beep_on_dialog()) (fltk::beep(fltk::BEEP_QUESTION));
va_list ap;
va_start(ap, b2);
- int r = innards("?", 0, 0, fmt, ap, b2, b1, b0);
+ int r = innards("?", 0, 0, fmt, ap, b0, b1, b2);
va_end(ap);
if(r<0)
return r;
@@ -411,7 +411,7 @@
if (fltk::beep_on_dialog()) (fltk::beep(fltk::BEEP_QUESTION));
va_list ap;
va_start(ap, b2);
- int r = innards("!", 0, 0, fmt, ap, b2, b1, b0);
+ int r = innards("!", 0, 0, fmt, ap, b0, b1, b2);
va_end(ap);
if(r<0)
return r;
_______________________________________________
fltk-commit mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk-commit