1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-08-03 09:29:30 +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(); Deallocate();
} }
void WaveDisplay::Allocate(int w) void Allocate(int w)
{ {
width = w; width = w;
@ -88,7 +88,7 @@ struct WaveDisplay
bl = new int[width]; bl = new int[width];
} }
void WaveDisplay::Deallocate() void Deallocate()
{ {
delete[] where; delete[] where;
where = 0; where = 0;