diff options
author | Kurt Zenker <kz@openoffice.org> | 2008-03-06 18:11:59 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2008-03-06 18:11:59 +0000 |
commit | f1766560cc002fc74d87fcf429b1878a16a4c41c (patch) | |
tree | 505769bca84f5f22a3e7087b5c787a6486c6249b /basctl | |
parent | 889cb1ecdefe8b0ab61c61f6c034a9c7d13eb17c (diff) |
INTEGRATION: CWS odbmacros2 (1.41.6); FILE MERGED
2008/02/25 13:28:41 fs 1.41.6.1: #i86427# PropBrw::Update changed signature
Diffstat (limited to 'basctl')
-rw-r--r-- | basctl/source/basicide/baside3.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/basctl/source/basicide/baside3.cxx b/basctl/source/basicide/baside3.cxx index 39560c6f8c36..49e0874041fd 100644 --- a/basctl/source/basicide/baside3.cxx +++ b/basctl/source/basicide/baside3.cxx @@ -4,9 +4,9 @@ * * $RCSfile: baside3.cxx,v $ * - * $Revision: 1.41 $ + * $Revision: 1.42 $ * - * last change: $Author: vg $ $Date: 2008-01-28 14:03:36 $ + * last change: $Author: kz $ $Date: 2008-03-06 19:11:59 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -698,7 +698,7 @@ void DialogWindow::DisableBrowser() SfxViewFrame* pViewFrame = pIDEShell ? pIDEShell->GetViewFrame() : NULL; SfxChildWindow* pChildWin = pViewFrame ? pViewFrame->GetChildWindow(SID_SHOW_PROPERTYBROWSER) : NULL; if( pChildWin ) - ((PropBrw*)(pChildWin->GetWindow()))->Update( 0 ); + ((PropBrw*)(pChildWin->GetWindow()))->Update( NULL ); } void DialogWindow::UpdateBrowser() @@ -707,7 +707,7 @@ void DialogWindow::UpdateBrowser() SfxViewFrame* pViewFrame = pIDEShell ? pIDEShell->GetViewFrame() : NULL; SfxChildWindow* pChildWin = pViewFrame ? pViewFrame->GetChildWindow(SID_SHOW_PROPERTYBROWSER) : NULL; if( pChildWin ) - ((PropBrw*)(pChildWin->GetWindow()))->Update(GetEditor()->GetView()); + ((PropBrw*)(pChildWin->GetWindow()))->Update( pIDEShell ); } static ::rtl::OUString aResourceResolverPropName = |