1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-16 16:10:06 +02:00

compilation fix

This commit is contained in:
Paul Licameli 2015-06-02 09:16:07 -04:00
parent bddded0d2b
commit 14b8607017

View File

@ -75,7 +75,7 @@ struct WaveDisplay
Deallocate();
}
void WaveDisplay::Allocate(int w)
void Allocate(int w)
{
width = w;
@ -88,7 +88,7 @@ struct WaveDisplay
bl = new int[width];
}
void WaveDisplay::Deallocate()
void Deallocate()
{
delete[] where;
where = 0;