summaryrefslogtreecommitdiff
path: root/sfx2/inc/sfx2/tabdlg.hxx
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2008-06-06 13:00:06 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2008-06-06 13:00:06 +0000
commitff2d90b539bb089e283f09f88d1d0d87ed9c442c (patch)
treed46eeb9ddb6c82428b675d25eb64eaf4c94492d3 /sfx2/inc/sfx2/tabdlg.hxx
parentc2e68ed88f1a42c8015bed48571e21f3b40afe28 (diff)
INTEGRATION: CWS os113 (1.3.44); FILE MERGED
2008/05/22 05:41:40 os 1.3.44.1: #i88463# added parameter at methods of SfxTabPage to suppress deep search for WhichId
Diffstat (limited to 'sfx2/inc/sfx2/tabdlg.hxx')
-rw-r--r--sfx2/inc/sfx2/tabdlg.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sfx2/inc/sfx2/tabdlg.hxx b/sfx2/inc/sfx2/tabdlg.hxx
index c455f05ff7b0..2559338d564c 100644
--- a/sfx2/inc/sfx2/tabdlg.hxx
+++ b/sfx2/inc/sfx2/tabdlg.hxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: tabdlg.hxx,v $
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
* This file is part of OpenOffice.org.
*
@@ -241,9 +241,9 @@ protected:
USHORT GetSlot( USHORT nWhich ) const
{ return pSet->GetPool()->GetSlotId( nWhich ); }
- USHORT GetWhich( USHORT nSlot ) const
- { return pSet->GetPool()->GetWhich( nSlot ); }
- const SfxPoolItem* GetOldItem( const SfxItemSet& rSet, USHORT nSlot );
+ USHORT GetWhich( USHORT nSlot, sal_Bool bDeep = sal_True ) const
+ { return pSet->GetPool()->GetWhich( nSlot, bDeep ); }
+ const SfxPoolItem* GetOldItem( const SfxItemSet& rSet, USHORT nSlot, sal_Bool bDeep = sal_True );
const SfxPoolItem* GetExchangeItem( const SfxItemSet& rSet, USHORT nSlot );
SfxTabDialog* GetTabDialog() const { return pTabDlg; }
@@ -282,7 +282,7 @@ public:
virtual void FillUserData();
virtual BOOL IsReadOnly() const;
virtual void PageCreated (SfxAllItemSet aSet); //add CHINA001
- static const SfxPoolItem* GetItem( const SfxItemSet& rSet, USHORT nSlot );
+ static const SfxPoolItem* GetItem( const SfxItemSet& rSet, USHORT nSlot, sal_Bool bDeep = sal_True );
void SetFrame(const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame >& xFrame);
::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame > GetFrame();