From: <pst...@us...> - 2013-01-02 17:39:02
|
Revision: 929 http://sourceforge.net/p/jazzplusplus/code/929 Author: pstieber Date: 2013-01-02 17:38:59 +0000 (Wed, 02 Jan 2013) Log Message: ----------- Removed an unused variable (k) and simplified code. Modified Paths: -------------- trunk/jazz/src/SampleDialog.cpp Modified: trunk/jazz/src/SampleDialog.cpp =================================================================== --- trunk/jazz/src/SampleDialog.cpp 2013-01-02 17:30:00 UTC (rev 928) +++ trunk/jazz/src/SampleDialog.cpp 2013-01-02 17:38:59 UTC (rev 929) @@ -710,11 +710,9 @@ // und: klar, toolbar } - void JZSynthDlg::AddEdits() { - int i, k; - for (i = 0, k = 0; i < MAXSYNTHS; i++) + for (int i = 0; i < MAXSYNTHS; i++) { synths[i] = new JZAddSynth(this); synths[i]->SetDuration(duration); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |