Some more uninitialized variables.

Originally committed to SVN as r2491.
This commit is contained in:
Rodrigo Braz Monteiro 2008-11-25 02:07:07 +00:00
parent 6dba041df6
commit e802fa3c84
2 changed files with 4 additions and 0 deletions

View File

@ -62,6 +62,7 @@ BaseGrid::BaseGrid(wxWindow* parent, wxWindowID id, const wxPoint& pos, const wx
extendRow = -1;
bmp = NULL;
holding = false;
byFrame = false;
// Set scrollbar
scrollBar = new wxScrollBar(this,GRID_SCROLLBAR,wxDefaultPosition,wxDefaultSize,wxSB_VERTICAL);

View File

@ -53,6 +53,9 @@
VideoSlider::VideoSlider (wxWindow* parent, wxWindowID id)
: wxWindow (parent,id,wxDefaultPosition,wxDefaultSize,wxWANTS_CHARS | wxFULL_REPAINT_ON_RESIZE)
{
val = 0;
min = 0;
max = 1;
Display = NULL;
SetClientSize(20,25);
locked = false;