From: <pst...@us...> - 2010-07-18 22:02:13
|
Revision: 820 http://jazzplusplus.svn.sourceforge.net/jazzplusplus/?rev=820&view=rev Author: pstieber Date: 2010-07-18 22:02:07 +0000 (Sun, 18 Jul 2010) Log Message: ----------- Added calls to save the audio sample set, save the audio sample set as a particular file name, and clear the existing audio sample set. Modified Paths: -------------- trunk/jazz/src/TrackFrame.cpp Modified: trunk/jazz/src/TrackFrame.cpp =================================================================== --- trunk/jazz/src/TrackFrame.cpp 2010-07-18 22:00:44 UTC (rev 819) +++ trunk/jazz/src/TrackFrame.cpp 2010-07-18 22:02:07 UTC (rev 820) @@ -671,18 +671,21 @@ //----------------------------------------------------------------------------- void JZTrackFrame::OnAudioSaveSampleSet(wxCommandEvent& Event) { + mpProject->SaveSampleSet(this); } //----------------------------------------------------------------------------- //----------------------------------------------------------------------------- void JZTrackFrame::OnAudioSaveSampleSetAs(wxCommandEvent& Event) { + mpProject->SaveSampleSetAs(this); } //----------------------------------------------------------------------------- //----------------------------------------------------------------------------- void JZTrackFrame::OnAudioNewSampleSet(wxCommandEvent& Event) { + mpProject->ClearSampleSet(this); } //----------------------------------------------------------------------------- This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |