Update of /cvsroot/audacity/audacity-src/src
In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv32446

Modified Files:
        AboutDialog.cpp AudacityApp.cpp Experimental.h Languages.cpp 
        Prefs.cpp Prefs.h Project.cpp ShuttleGui.cpp ShuttleGui.h 
        Theme.cpp Theme.h TrackPanel.cpp 
Log Message:
Update comments that refer to wxWindows to use wxWidgets.

Index: Languages.cpp
===================================================================
RCS file: /cvsroot/audacity/audacity-src/src/Languages.cpp,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -d -r1.36 -r1.37
--- Languages.cpp       8 Sep 2009 17:54:08 -0000       1.36
+++ Languages.cpp       20 Oct 2009 23:08:26 -0000      1.37
@@ -17,10 +17,10 @@
   language names (like "Español", "Français", and "Português").
   We use our own list of translations of language names (i.e.
   "Français" instead of "French") but we fallback on the language
-  name in wxWindows if we don't have it listed.
+  name in wxWidgets if we don't have it listed.
 
   This code is designed to work well with all of the current
-  languages, but adapt to any language that wxWindows supports.
+  languages, but adapt to any language that wxWidgets supports.
   Other languages will only be supported if they're added to
   the database using wxLocale::AddLanguage.
 

Index: AboutDialog.cpp
===================================================================
RCS file: /cvsroot/audacity/audacity-src/src/AboutDialog.cpp,v
retrieving revision 1.72
retrieving revision 1.73
diff -u -d -r1.72 -r1.73
--- AboutDialog.cpp     18 Oct 2009 07:55:30 -0000      1.72
+++ AboutDialog.cpp     20 Oct 2009 23:08:26 -0000      1.73
@@ -417,7 +417,7 @@
          _("Audio playback and recording"), wxString(wxT("v19")));
 
    informationStr += wxT("<tr><td>");  // start new row
-   // wxWindows version:
+   // wxWidgets version:
    informationStr += wxVERSION_STRING;
    informationStr += wxT("</td><td/><td>");
    /* unicode or not? */

Index: AudacityApp.cpp
===================================================================
RCS file: /cvsroot/audacity/audacity-src/src/AudacityApp.cpp,v
retrieving revision 1.250
retrieving revision 1.251
diff -u -d -r1.250 -r1.251
--- AudacityApp.cpp     15 Oct 2009 19:56:48 -0000      1.250
+++ AudacityApp.cpp     20 Oct 2009 23:08:26 -0000      1.251
@@ -969,7 +969,7 @@
    LoadModules(*mCmdHandler);
 
    // Locale
-   // wxWindows 2.3 has a much nicer wxLocale API.  We can make this code much
+   // wxWidgets 2.3 has a much nicer wxLocale API.  We can make this code much
    // better once we move to wx 2.3/2.4.
 
    wxString lang = gPrefs->Read(wxT("/Locale/Language"), wxT(""));
@@ -1277,7 +1277,7 @@
    wxString presetsDefaultLoc =
       wxFileName(userdatadir, wxT("presets")).GetFullPath();
 
-   // Stop wxWindows from printing its own error messages (not used ... does 
this really do anything?)
+   // Stop wxWidgets from printing its own error messages (not used ... does 
this really do anything?)
    wxLogNull logNo;
    
    // Try temp dir that was stored in prefs first
@@ -1326,7 +1326,7 @@
       tempFromPrefs = wxT("");
    #endif
 
-   // Stop wxWindows from printing its own error messages
+   // Stop wxWidgets from printing its own error messages
 
    wxLogNull logNo;
 

Index: Theme.h
===================================================================
RCS file: /cvsroot/audacity/audacity-src/src/Theme.h,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -d -r1.16 -r1.17
--- Theme.h     10 Feb 2009 03:44:20 -0000      1.16
+++ Theme.h     20 Oct 2009 23:08:27 -0000      1.17
@@ -7,7 +7,7 @@
   James Crook
 
   Audacity is free software.
-  This file is licensed under the wxWindows license, see License.txt
+  This file is licensed under the wxWidgets license, see License.txt
 
 **********************************************************************/
 

Index: Prefs.h
===================================================================
RCS file: /cvsroot/audacity/audacity-src/src/Prefs.h,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- Prefs.h     9 Jul 2008 07:30:40 -0000       1.13
+++ Prefs.h     20 Oct 2009 23:08:26 -0000      1.14
@@ -7,7 +7,7 @@
   Dominic Mazzoni
   Markus Meyer
 
-  Audacity uses wxWindows' wxFileConfig class to handle preferences.
+  Audacity uses wxWidgets' wxFileConfig class to handle preferences.
   In Audacity versions prior to 1.3.1, it used wxConfig, which would
   store the prefs in a platform-dependent way (e.g. in the registry
   on Windows). Now it always stores the settings in a configuration file

Index: TrackPanel.cpp
===================================================================
RCS file: /cvsroot/audacity/audacity-src/src/TrackPanel.cpp,v
retrieving revision 1.477
retrieving revision 1.478
diff -u -d -r1.477 -r1.478
--- TrackPanel.cpp      13 Sep 2009 03:19:20 -0000      1.477
+++ TrackPanel.cpp      20 Oct 2009 23:08:27 -0000      1.478
@@ -6419,7 +6419,7 @@
    Refresh(false);
 }
 
-/// Converts a format enumeration to a wxWindows menu item Id.
+/// Converts a format enumeration to a wxWidgets menu item Id.
 int TrackPanel::IdOfFormat( int format )
 {
    switch (format) {
@@ -6476,7 +6476,7 @@
    Refresh(false);
 }
 
-/// Converts a sampling rate to a wxWindows menu item id
+/// Converts a sampling rate to a wxWidgets menu item id
 int TrackPanel::IdOfRate( int rate )
 {
    for(int i=0;i<nRates;i++) {

Index: ShuttleGui.h
===================================================================
RCS file: /cvsroot/audacity/audacity-src/src/ShuttleGui.h,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -d -r1.33 -r1.34
--- ShuttleGui.h        22 May 2009 05:46:00 -0000      1.33
+++ ShuttleGui.h        20 Oct 2009 23:08:27 -0000      1.34
@@ -7,7 +7,7 @@
   James Crook
 
   Audacity is free software.
-  This file is licensed under the wxWindows license, see License.txt
+  This file is licensed under the wxWidgets license, see License.txt
 
 **********************************************************************/
 

Index: ShuttleGui.cpp
===================================================================
RCS file: /cvsroot/audacity/audacity-src/src/ShuttleGui.cpp,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -d -r1.45 -r1.46
--- ShuttleGui.cpp      2 Jun 2009 05:03:15 -0000       1.45
+++ ShuttleGui.cpp      20 Oct 2009 23:08:27 -0000      1.46
@@ -7,7 +7,7 @@
   James Crook
 
   Audacity is free software.
-  This file is licensed under the wxWindows license, see License.txt
+  This file is licensed under the wxWidgets license, see License.txt
 
 **********************************************************************//**
 

Index: Project.cpp
===================================================================
RCS file: /cvsroot/audacity/audacity-src/src/Project.cpp,v
retrieving revision 1.463
retrieving revision 1.464
diff -u -d -r1.463 -r1.464
--- Project.cpp 15 Oct 2009 19:56:52 -0000      1.463
+++ Project.cpp 20 Oct 2009 23:08:26 -0000      1.464
@@ -1849,7 +1849,7 @@
       DeleteClipboard();
 
    // JKC: For Win98 and Linux do not detach the menu bar.
-   // We want wxWindows to clean it up for us.
+   // We want wxWidgets to clean it up for us.
    // TODO: Is there a Mac issue here??
    // SetMenuBar(NULL);
 

Index: Theme.cpp
===================================================================
RCS file: /cvsroot/audacity/audacity-src/src/Theme.cpp,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -d -r1.33 -r1.34
--- Theme.cpp   23 May 2008 05:54:00 -0000      1.33
+++ Theme.cpp   20 Oct 2009 23:08:27 -0000      1.34
@@ -7,7 +7,7 @@
   James Crook
    
   Audacity is free software.
-  This file is licensed under the wxWindows license, see License.txt
+  This file is licensed under the wxWidgets license, see License.txt
 
 ********************************************************************//**
 

Index: Experimental.h
===================================================================
RCS file: /cvsroot/audacity/audacity-src/src/Experimental.h,v
retrieving revision 1.66
retrieving revision 1.67
diff -u -d -r1.66 -r1.67
--- Experimental.h      8 Oct 2009 14:32:09 -0000       1.66
+++ Experimental.h      20 Oct 2009 23:08:26 -0000      1.67
@@ -118,7 +118,7 @@
 
    // A long term plan is to use dso's and dlls for Audacity extensions
    // These are 'WX' plug ins that manage their own displays using
-   // wxWindows.
+   // wxWidgets.
    //#define EXPERIMENTAL_WX_PLUG_INS
 #endif
 

Index: Prefs.cpp
===================================================================
RCS file: /cvsroot/audacity/audacity-src/src/Prefs.cpp,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -d -r1.26 -r1.27
--- Prefs.cpp   23 May 2008 16:01:22 -0000      1.26
+++ Prefs.cpp   20 Oct 2009 23:08:26 -0000      1.27
@@ -12,7 +12,7 @@
 \brief Utility functions for working with our wxConf (gPrefs)
 
 
-  Audacity uses wxWindows' wxConfig class to handle preferences.
+  Audacity uses wxWidgets' wxConfig class to handle preferences.
   See Prefs.h for more information on how it works...
 
 \verbatim


------------------------------------------------------------------------------
Come build with us! The BlackBerry(R) Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay 
ahead of the curve. Join us from November 9 - 12, 2009. Register now!
http://p.sf.net/sfu/devconference
_______________________________________________
Audacity-cvs mailing list
Audacity-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/audacity-cvs

Reply via email to