Update of /cvsroot/audacity/audacity-src/src/export
In directory sc8-pr-cvs11.sourceforge.net:/tmp/cvs-serv18035

Modified Files:
        ExportFLAC.cpp ExportMP2.cpp ExportMP3.cpp ExportOGG.cpp 
Log Message:
Change for wxWidgets 2.8.3 compatability


Index: ExportMP2.cpp
===================================================================
RCS file: /cvsroot/audacity/audacity-src/src/export/ExportMP2.cpp,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- ExportMP2.cpp       6 Apr 2007 10:24:04 -0000       1.5
+++ ExportMP2.cpp       12 Apr 2007 00:14:03 -0000      1.6
@@ -283,7 +283,7 @@
       ShuttleGui S(this, eIsSavingToPrefs);
       PopulateOrExchange(S);
 
-      wxDialog::OnOK(event);
+      EndModal(wxID_OK);
 
       return;
    }

Index: ExportOGG.cpp
===================================================================
RCS file: /cvsroot/audacity/audacity-src/src/export/ExportOGG.cpp,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -d -r1.25 -r1.26
--- ExportOGG.cpp       6 Apr 2007 10:24:05 -0000       1.25
+++ ExportOGG.cpp       12 Apr 2007 00:14:03 -0000      1.26
@@ -260,7 +260,7 @@
 
       gPrefs->Write(wxT("/FileFormats/OggExportQuality"),mOggQualityUnscaled * 
10);
 
-      wxDialog::OnOK(event);
+      EndModal(wxID_OK);
 
       return;
    }

Index: ExportMP3.cpp
===================================================================
RCS file: /cvsroot/audacity/audacity-src/src/export/ExportMP3.cpp,v
retrieving revision 1.54
retrieving revision 1.55
diff -u -d -r1.54 -r1.55
--- ExportMP3.cpp       10 Apr 2007 02:21:35 -0000      1.54
+++ ExportMP3.cpp       12 Apr 2007 00:14:03 -0000      1.55
@@ -1238,7 +1238,7 @@
       ShuttleGui S(this, eIsSavingToPrefs);
       PopulateOrExchange(S);
 
-      wxDialog::OnOK(event);
+      EndModal(wxID_OK);
 
       return;
    }

Index: ExportFLAC.cpp
===================================================================
RCS file: /cvsroot/audacity/audacity-src/src/export/ExportFLAC.cpp,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- ExportFLAC.cpp      6 Apr 2007 10:24:04 -0000       1.10
+++ ExportFLAC.cpp      12 Apr 2007 00:14:02 -0000      1.11
@@ -192,7 +192,7 @@
       ShuttleGui S(this, eIsSavingToPrefs);
       PopulateOrExchange(S);
 
-      wxDialog::OnOK(event);
+      EndModal(wxID_OK);
 
       return;
    }


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Audacity-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/audacity-cvs

Reply via email to