|
From: <pst...@us...> - 2010-07-17 23:38:18
|
Revision: 813
http://jazzplusplus.svn.sourceforge.net/jazzplusplus/?rev=813&view=rev
Author: pstieber
Date: 2010-07-17 23:38:12 +0000 (Sat, 17 Jul 2010)
Log Message:
-----------
1. Made an end-of-line comment and above-line comment.
2. Used pre-increment instead of post-increment.
Modified Paths:
--------------
trunk/jazz/src/PianoWindow.cpp
Modified: trunk/jazz/src/PianoWindow.cpp
===================================================================
--- trunk/jazz/src/PianoWindow.cpp 2010-07-17 21:29:09 UTC (rev 812)
+++ trunk/jazz/src/PianoWindow.cpp 2010-07-17 23:38:12 UTC (rev 813)
@@ -681,9 +681,10 @@
mpTrack = mpProject->GetTrack(mTrackIndex);
- mFontSize = mPianoFontSizes[1]; // Must be an entry in the array.
+ // Must be an entry in the array.
+ mFontSize = mPianoFontSizes[1];
- for (int i = 0; i < eMaxTrackCount; i++)
+ for (int i = 0; i < eMaxTrackCount; ++i)
{
mFromLines[i] = 64;
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|