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

Modified Files:
      Tag: Audacity_1_3_5-Camp_Jam
        Export.cpp 
Log Message:
re-order default naming convention

Index: Export.cpp
===================================================================
RCS file: /cvsroot/audacity/audacity-src/src/export/Export.cpp,v
retrieving revision 1.64.2.3
retrieving revision 1.64.2.4
diff -u -d -r1.64.2.3 -r1.64.2.4
--- Export.cpp  8 Jan 2009 00:41:44 -0000       1.64.2.3
+++ Export.cpp  10 Jan 2009 03:54:01 -0000      1.64.2.4
@@ -508,11 +508,12 @@
 
    mFilename.SetPath(gPrefs->Read(wxT("/Export/Path"), ::wxGetCwd()));
 #if ((AUDACITY_BRANDING == BRAND_JAMLING__EASY) || (AUDACITY_BRANDING == 
BRAND_JAMLING__FULL))
-   wxString strName = mProject->GetName() + wxT("-");
+   wxString strName;
    if (mSelectedOnly && (mNumSelected == 1)) // Exporting one track
-      strName += gStrInstrument;
+      strName = gStrInstrument;
    else
-      strName += wxT("Mix");
+      strName = wxT("Mix");
+   strName += wxT("-") + mProject->GetName();
    mFilename.SetName(strName);
 #else
    mFilename.SetName(mProject->GetName());


------------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It is the best place to buy or sell services for
just about anything Open Source.
http://p.sf.net/sfu/Xq1LFB
_______________________________________________
Audacity-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/audacity-cvs

Reply via email to