From: <pst...@us...> - 2010-07-17 18:35:08
|
Revision: 805 http://jazzplusplus.svn.sourceforge.net/jazzplusplus/?rev=805&view=rev Author: pstieber Date: 2010-07-17 18:35:01 +0000 (Sat, 17 Jul 2010) Log Message: ----------- Changed JZTrack::Dialog to JZTrack::Edit. Modified Paths: -------------- trunk/jazz/src/Track.cpp trunk/jazz/src/Track.h trunk/jazz/src/TrackWindow.cpp Modified: trunk/jazz/src/Track.cpp =================================================================== --- trunk/jazz/src/Track.cpp 2010-07-17 18:18:55 UTC (rev 804) +++ trunk/jazz/src/Track.cpp 2010-07-17 18:35:01 UTC (rev 805) @@ -1902,7 +1902,7 @@ #endif // OBSOLETE -void JZTrack::Dialog(JZTrackWindow* pParent) +void JZTrack::Edit(JZTrackWindow* pParent) { JZTrackDialog TrackDialog(*this, pParent); TrackDialog.ShowModal(); Modified: trunk/jazz/src/Track.h =================================================================== --- trunk/jazz/src/Track.h 2010-07-17 18:18:55 UTC (rev 804) +++ trunk/jazz/src/Track.h 2010-07-17 18:35:01 UTC (rev 805) @@ -567,7 +567,7 @@ public: - void Dialog(JZTrackWindow* pParent); + void Edit(JZTrackWindow* pParent); bool IsEditing() const; Modified: trunk/jazz/src/TrackWindow.cpp =================================================================== --- trunk/jazz/src/TrackWindow.cpp 2010-07-17 18:18:55 UTC (rev 804) +++ trunk/jazz/src/TrackWindow.cpp 2010-07-17 18:35:01 UTC (rev 805) @@ -3,7 +3,7 @@ // // Copyright (C) 1994-2000 Andreas Voss and Per Sigmond, all rights reserved. // Modifications Copyright (C) 2004 Patrick Earl -// Modifications Copyright (C) 2008-2009 Peter J. Stieber +// Modifications Copyright (C) 2008-2010 Peter J. Stieber // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -390,7 +390,7 @@ { // The point is inside of a track name column. Edit the track // settings. - pTrack->Dialog(this); + pTrack->Edit(this); Refresh(false); } else if (Point.x >= mStateX && Point.x < mStateX + mStateWidth) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |