|
From: <pst...@us...> - 2008-03-30 15:21:55
|
Revision: 373
http://jazzplusplus.svn.sourceforge.net/jazzplusplus/?rev=373&view=rev
Author: pstieber
Date: 2008-03-30 08:21:52 -0700 (Sun, 30 Mar 2008)
Log Message:
-----------
Changed pString to pData.
Modified Paths:
--------------
trunk/jazz/src/Events.cpp
trunk/jazz/src/Events.h
Modified: trunk/jazz/src/Events.cpp
===================================================================
--- trunk/jazz/src/Events.cpp 2008-03-30 15:07:26 UTC (rev 372)
+++ trunk/jazz/src/Events.cpp 2008-03-30 15:21:52 UTC (rev 373)
@@ -156,7 +156,7 @@
//*****************************************************************************
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
-int tGetMidiBytes::Write(JZEvent* pEvent, unsigned char* pString, int Length)
+int tGetMidiBytes::Write(JZEvent* pEvent, unsigned char* pData, int Length)
{
int Stat = pEvent->Stat;
@@ -175,7 +175,7 @@
Buffer[nBytes++] = Stat | ((tChannelEvent *)pEvent)->Channel;
while(Length--)
{
- Buffer[nBytes++] = *pString++;
+ Buffer[nBytes++] = *pData++;
}
return 0;
Modified: trunk/jazz/src/Events.h
===================================================================
--- trunk/jazz/src/Events.h 2008-03-30 15:07:26 UTC (rev 372)
+++ trunk/jazz/src/Events.h 2008-03-30 15:21:52 UTC (rev 373)
@@ -114,7 +114,7 @@
virtual int Write(
JZEvent* pEvent,
- unsigned char* pString,
+ unsigned char* pData,
int Length) = 0;
virtual void NextTrack();
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|