|
From: <pst...@us...> - 2011-08-05 20:27:05
|
Revision: 884
http://jazzplusplus.svn.sourceforge.net/jazzplusplus/?rev=884&view=rev
Author: pstieber
Date: 2011-08-05 20:26:59 +0000 (Fri, 05 Aug 2011)
Log Message:
-----------
Changed the argument to Add from const char* to const wxString&.
Modified Paths:
--------------
trunk/jazz/src/Player.h
Modified: trunk/jazz/src/Player.h
===================================================================
--- trunk/jazz/src/Player.h 2011-08-05 20:20:39 UTC (rev 883)
+++ trunk/jazz/src/Player.h 2011-08-05 20:26:59 UTC (rev 884)
@@ -72,9 +72,9 @@
return Unknown;
}
- unsigned Add(const char* pName)
+ unsigned Add(const wxString& Name)
{
- mDeviceNames.push_back(pName);
+ mDeviceNames.push_back(Name);
return mDeviceNames.size();
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|