Reset default width and height to 0 as 100 had no affect
This commit is contained in:
parent
835380ae04
commit
7ce851fbc0
1 changed files with 4 additions and 4 deletions
|
@ -2,9 +2,9 @@
|
|||
*
|
||||
* $RCSfile: salframe.cxx,v $
|
||||
*
|
||||
* $Revision: 1.41 $
|
||||
* $Revision: 1.42 $
|
||||
*
|
||||
* last change: $Author: pluby $ $Date: 2000-12-24 21:41:14 $
|
||||
* last change: $Author: pluby $ $Date: 2000-12-24 22:36:40 $
|
||||
*
|
||||
* The Contents of this file are made available subject to the terms of
|
||||
* either of the following licenses
|
||||
|
@ -96,8 +96,8 @@ SalFrame::SalFrame()
|
|||
maFrameData.mpGraphics = NULL;
|
||||
maFrameData.mpInst = NULL;
|
||||
maFrameData.mpProc = ImplSalFrameCallbackDummy;
|
||||
maFrameData.mnWidth = 100; // 0 size causes problems
|
||||
maFrameData.mnHeight = 100; // 0 size causes problems
|
||||
maFrameData.mnWidth = 0;
|
||||
maFrameData.mnHeight = 0;
|
||||
maFrameData.mbGraphics = FALSE;
|
||||
|
||||
// insert frame in framelist
|
||||
|
|
Loading…
Reference in a new issue