diff options
author | Patrick Luby <pluby@openoffice.org> | 2000-11-22 01:27:25 +0000 |
---|---|---|
committer | Patrick Luby <pluby@openoffice.org> | 2000-11-22 01:27:25 +0000 |
commit | fd32c20ab887db5d3d8d7071c54cabb123efe87a (patch) | |
tree | 9fcaa093bff4643d6d35ef7558b58595c7757c0b /vcl | |
parent | b26dba5ad91032f3ad63f7380362cb71bc505f1a (diff) |
Commented out code in GetClientSize and SetClientSize methods as they were breaking modal dialog windows.
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/aqua/source/window/salframe.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/vcl/aqua/source/window/salframe.cxx b/vcl/aqua/source/window/salframe.cxx index fc3a046aa522..26baae5b152d 100644 --- a/vcl/aqua/source/window/salframe.cxx +++ b/vcl/aqua/source/window/salframe.cxx @@ -2,9 +2,9 @@ * * $RCSfile: salframe.cxx,v $ * - * $Revision: 1.24 $ + * $Revision: 1.25 $ * - * last change: $Author: ganaya $ $Date: 2000-11-21 01:36:49 $ + * last change: $Author: pluby $ $Date: 2000-11-22 02:27:25 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -361,7 +361,7 @@ void SalFrame::SetMinClientSize( long nWidth, long nHeight ) void SalFrame::SetClientSize( long nWidth, long nHeight ) { - VCLWindow_setSize( maFrameData.mhWnd, nWidth, nHeight ); + // VCLWindow_setSize( maFrameData.mhWnd, nWidth, nHeight ); } // ----------------------------------------------------------------------- @@ -369,9 +369,9 @@ void SalFrame::SetClientSize( long nWidth, long nHeight ) void SalFrame::GetClientSize( long& rWidth, long& rHeight ) { - //Copied from Windows version: not sure if it is correct for Aqua - rWidth = maFrameData.mnWidth; - rHeight = maFrameData.mnHeight; + // Copied from Windows version: not sure if it is correct for Aqua + // rWidth = maFrameData.mnWidth; + // rHeight = maFrameData.mnHeight; } |