mirror of
https://github.com/cookiengineer/audacity
synced 2026-03-19 04:36:35 +01:00
Implement member functions of classes in corresponding .cpp files...
... in four cases; not in some other .cpp file. This is another move that causes the generated graph to reflect dependencies correctly. This fixes other large, hidden cycles that involved PrefsDialog.cpp: there was link dependency on that when PrefsPanel.h was used for the base class. No longer. Also cycles involving TrackPanel.cpp, which contained the default implementations for TrackPanelCell and related abstract base classes.
This commit is contained in:
27
src/TrackPanelDrawable.cpp
Normal file
27
src/TrackPanelDrawable.cpp
Normal file
@@ -0,0 +1,27 @@
|
||||
/**********************************************************************
|
||||
|
||||
Audacity: A Digital Audio Editor
|
||||
|
||||
TrackPanelDrawable.cpp
|
||||
|
||||
Paul Licameli split from TrackPanel.cpp
|
||||
|
||||
**********************************************************************/
|
||||
|
||||
#include "TrackPanelDrawable.h"
|
||||
|
||||
TrackPanelDrawable::~TrackPanelDrawable()
|
||||
{
|
||||
}
|
||||
|
||||
void TrackPanelDrawable::Draw(
|
||||
TrackPanelDrawingContext &, const wxRect &, unsigned )
|
||||
{
|
||||
}
|
||||
|
||||
wxRect TrackPanelDrawable::DrawingArea(
|
||||
TrackPanelDrawingContext &,
|
||||
const wxRect &rect, const wxRect &, unsigned )
|
||||
{
|
||||
return rect;
|
||||
}
|
||||
Reference in New Issue
Block a user