diff options
author | Oliver Bolte <obo@openoffice.org> | 2005-04-21 10:44:34 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2005-04-21 10:44:34 +0000 |
commit | fed9eb71c93f2681e55f654bb06baf3adaa5c6ad (patch) | |
tree | 560e2bda1d1bcb62feb975d74359cf138fc90f6b | |
parent | 8f92228fdb48c5bdfe95e81af882bfa2f2989cda (diff) |
INTEGRATION: CWS fwk10 (1.5.432); FILE MERGED
2005/04/12 08:17:29 pb 1.5.432.1: fix: #i43799# initialize size bigger
-rw-r--r-- | sfx2/source/dialog/navigat.cxx | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/sfx2/source/dialog/navigat.cxx b/sfx2/source/dialog/navigat.cxx index a7df74e35224..dfd19e7ad61d 100644 --- a/sfx2/source/dialog/navigat.cxx +++ b/sfx2/source/dialog/navigat.cxx @@ -2,9 +2,9 @@ * * $RCSfile: navigat.cxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: svesik $ $Date: 2004-04-21 13:12:44 $ + * last change: $Author: obo $ $Date: 2005-04-21 11:44:34 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -84,7 +84,7 @@ SfxNavigatorWrapper::SfxNavigatorWrapper( Window* pParent , eChildAlignment = SFX_ALIGN_NOALIGNMENT; pWindow->SetHelpId ( HID_NAVIGATOR_WINDOW ); - pWindow->SetOutputSizePixel( Size( 240, 240 ) ); + pWindow->SetOutputSizePixel( Size( 270, 240 ) ); ( ( SfxDockingWindow* ) pWindow )->Initialize( pInfo ); SetHideNotDelete( TRUE ); @@ -130,4 +130,3 @@ BOOL SfxNavigator::Close() return FALSE; } - |