Update of /cvsroot/mahogany/M/src/gui
In directory sc8-pr-cvs1:/tmp/cvs-serv29255/src/gui
Modified Files:
wxMDialogs.cpp
Log Message:
fixed TAB order in the text view dialog
Index: wxMDialogs.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/gui/wxMDialogs.cpp,v
retrieving revision 1.384
retrieving revision 1.385
diff -b -u -2 -r1.384 -r1.385
--- wxMDialogs.cpp 6 Nov 2002 00:28:24 -0000 1.384
+++ wxMDialogs.cpp 5 Dec 2002 01:18:57 -0000 1.385
@@ -345,6 +345,8 @@
wxFONTSTYLE_NORMAL, wxFONTWEIGHT_NORMAL));
- wxButton *btnClose = new wxButton(this, wxID_CANCEL, _("Close")),
- *btnSave = new wxButton(this, wxID_SAVE, _("&Save..."));
+ // in TAB order we want "Save" to get focus before "Close", so create
+ // them in order
+ wxButton *btnSave = new wxButton(this, wxID_SAVE, _("&Save...")),
+ *btnClose = new wxButton(this, wxID_CANCEL, _("Close"));
-------------------------------------------------------
This SF.net email is sponsored by: Microsoft Visual Studio.NET
comprehensive development tool, built to increase your
productivity. Try a free online hosted session at:
http://ads.sourceforge.net/cgi-bin/redirect.pl?micr0003en
_______________________________________________
Mahogany-cvsupdates mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/mahogany-cvsupdates