Fix uninitialized members found by valgrind.

This commit is contained in:
Jonathan Moore Liles 2008-05-27 19:37:02 -05:00
parent 2c502795ab
commit 54f0fd2fd9
1 changed files with 3 additions and 0 deletions

View File

@ -93,6 +93,9 @@ public:
Transport ( int X, int Y, int W, int H, const char *L=0 )
: Fl_Pack( X, Y, W, H, L )
{
recording = false;
rolling = false;
const int bw = W / 3;
type( HORIZONTAL );