From: <pst...@us...> - 2010-07-18 03:13:51
|
Revision: 815 http://jazzplusplus.svn.sourceforge.net/jazzplusplus/?rev=815&view=rev Author: pstieber Date: 2010-07-18 03:13:45 +0000 (Sun, 18 Jul 2010) Log Message: ----------- Changed the way pointers and references are specified. Modified Paths: -------------- trunk/jazz/src/Audio.h Modified: trunk/jazz/src/Audio.h =================================================================== --- trunk/jazz/src/Audio.h 2010-07-17 23:52:54 UTC (rev 814) +++ trunk/jazz/src/Audio.h 2010-07-18 03:13:45 UTC (rev 815) @@ -297,7 +297,7 @@ int FillBuffers(long last_clock); - JZAudioBuffer *GetBuffer(int i) const + JZAudioBuffer* GetBuffer(int i) const { // 0 < i < BUFCOUNT return buffers[i]; @@ -367,7 +367,7 @@ void RefreshDialogs(); - JZSample &operator[](int i) + JZSample& operator[](int i) { return *mSamples[i]; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |