Revision: 342
http://jazzplusplus.svn.sourceforge.net/jazzplusplus/?rev=342&view=rev
Author: pstieber
Date: 2008-03-20 22:51:45 -0700 (Thu, 20 Mar 2008)
Log Message:
-----------
1. Removed the EventWindow.h include.
2. Changed the piano frame forward declaration to piano window.
3. Changed GetPianoWindow to return a JZPianoWindow instead of a JZPianoFrame.
Modified Paths:
--------------
trunk/jazz/src/TrackFrame.h
Modified: trunk/jazz/src/TrackFrame.h
===================================================================
--- trunk/jazz/src/TrackFrame.h 2008-03-21 05:49:17 UTC (rev 341)
+++ trunk/jazz/src/TrackFrame.h 2008-03-21 05:51:45 UTC (rev 342)
@@ -23,14 +23,13 @@
#ifndef JZ_TRACKFRAME_H
#define JZ_TRACKFRAME_H
-#include "EventWindow.h"
#include "MouseAction.h"
#include "Metronome.h"
class JZSong;
class JZToolBar;
class JZTrackWindow;
-class JZPianoFrame;
+class JZPianoWindow;
//*****************************************************************************
//*****************************************************************************
@@ -47,7 +46,7 @@
virtual ~JZTrackFrame();
- JZPianoFrame* GetPianoWindow()
+ JZPianoWindow* GetPianoWindow()
{
return 0;
}
@@ -103,7 +102,7 @@
JZTrackWindow* mpTrackWindow;
-// JZPianoFrame* mpPianoFrame;
+// JZPianoWindow* mpPianoWindow;
int mPreviousClock;
bool mPreviouslyRecording;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|