sc-uninitialized-var-fix.diff: initialize data members for sure

This commit is contained in:
Kohei Yoshida 2010-09-16 10:51:53 +02:00 committed by Fridrich Štrba
parent fbf28ef12b
commit 35c5fca7f6

View file

@ -429,6 +429,10 @@ ScGridWindow::ScGridWindow( Window* pParent, ScViewData* pData, ScSplitPos eWhic
bPagebreakDrawn( FALSE ),
nPageScript( 0 ),
bDragRect( FALSE ),
nDragStartX( -1 ),
nDragStartY( -1 ),
nDragEndX( -1 ),
nDragEndY( -1 ),
meDragInsertMode( INS_NONE ),
nCurrentPointer( 0 ),
bIsInScroll( FALSE ),