mirror of
https://github.com/cookiengineer/audacity
synced 2025-04-30 07:39:42 +02:00
List of commands that were executed in the `src directory`: * sed -i 's/Audacity: A Digital Audio Editor/Tenacity/g' *.h * sed -i 's/Audacity: A Digital Audio Editor/Tenacity/g' *.cpp Signed-off-by: Panagiotis Vasilopoulos <hello@alwayslivid.com>
28 lines
544 B
C++
28 lines
544 B
C++
/**********************************************************************
|
|
|
|
Tenacity
|
|
|
|
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;
|
|
}
|