Update of /cvsroot/audacity/audacity-src/src/effects/nyquist
In directory sc8-pr-cvs11.sourceforge.net:/tmp/cvs-serv2961/nyquist
Modified Files:
Nyquist.cpp
Log Message:
Changing back what I did 3 days ago.
Index: Nyquist.cpp
===================================================================
RCS file: /cvsroot/audacity/audacity-src/src/effects/nyquist/Nyquist.cpp,v
retrieving revision 1.55
retrieving revision 1.56
diff -u -d -r1.55 -r1.56
--- Nyquist.cpp 30 Jun 2007 11:02:58 -0000 1.55
+++ Nyquist.cpp 30 Jun 2007 20:50:39 -0000 1.56
@@ -988,13 +988,14 @@
hSizer = new wxBoxSizer(wxHORIZONTAL);
- button = new wxButton(this, wxID_MORE, _("&Debug"));
+ button = new wxButton(this, wxID_CANCEL, _("&Cancel"));
hSizer->Add(button, 0, wxALIGN_CENTRE | wxALL, 5);
- button = new wxButton(this, wxID_OK, _("OK"));
+ button = new wxButton(this, wxID_MORE, _("&Debug"));
hSizer->Add(button, 0, wxALIGN_CENTRE | wxALL, 5);
- button = new wxButton(this, wxID_CANCEL, _("&Cancel"));
+ button = new wxButton(this, wxID_OK, _("&OK"));
+ button->SetDefault();
hSizer->Add(button, 0, wxALIGN_CENTRE | wxALL, 5);
mainSizer->Add(hSizer, 0, wxALIGN_CENTRE |
|