Skip to content

Commit

Permalink
* ctrl_slider.cpp: fixed an uninitialized member (and a segfault..)
Browse files Browse the repository at this point in the history
  • Loading branch information
Cyril Deguet committed Nov 13, 2005
1 parent fff99ee commit e364960
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/gui/skins2/controls/ctrl_slider.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ CtrlSliderBg::CtrlSliderBg( intf_thread_t *pIntf,
int thickness, GenericBitmap *pBackground,
int nbHoriz, int nbVert, int padHoriz, int padVert,
VarBool *pVisible, const UString &rHelp ):
CtrlGeneric( pIntf, rHelp, pVisible ),
CtrlGeneric( pIntf, rHelp, pVisible ), m_pCursor( NULL ),
m_rVariable( rVariable ), m_thickness( thickness ), m_rCurve( rCurve ),
m_width( rCurve.getWidth() ), m_height( rCurve.getHeight() ),
m_pImgSeq( NULL ), m_nbHoriz( nbHoriz ), m_nbVert( nbVert ),
Expand Down

0 comments on commit e364960

Please sign in to comment.