summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2005-01-18 15:19:50 +0000
committerKurt Zenker <kz@openoffice.org>2005-01-18 15:19:50 +0000
commite1678ee7ed8fab3fe266fbe10e46b11fcabe469f (patch)
tree070ed8bb857440aea55c4baa6c0de07a37f7f51d /sfx2
parent3777227ad9ef094a5d22f26d06ff569fcc13eee2 (diff)
INTEGRATION: CWS fwkbugfix04 (1.34.118); FILE MERGED
2005/01/06 17:44:25 mba 1.34.118.3: RESYNC: (1.35-1.36); FILE MERGED 2004/12/08 15:16:12 mba 1.34.118.2: RESYNC: (1.34-1.35); FILE MERGED 2004/12/02 16:45:31 mba 1.34.118.1: #i31945#: UNO support for AnyItem
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/source/view/frame.cxx16
1 files changed, 14 insertions, 2 deletions
diff --git a/sfx2/source/view/frame.cxx b/sfx2/source/view/frame.cxx
index ed2e37bfc062..5b375454373a 100644
--- a/sfx2/source/view/frame.cxx
+++ b/sfx2/source/view/frame.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: frame.cxx,v $
*
- * $Revision: 1.37 $
+ * $Revision: 1.38 $
*
- * last change: $Author: rt $ $Date: 2005-01-11 13:32:45 $
+ * last change: $Author: kz $ $Date: 2005-01-18 16:19:50 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -1148,6 +1148,18 @@ SfxPoolItem* SfxUsrAnyItem::Clone( SfxItemPool *) const
return new SfxUsrAnyItem( Which(), aValue );
}
+sal_Bool SfxUsrAnyItem::QueryValue( com::sun::star::uno::Any& rVal, BYTE nMemberId ) const
+{
+ rVal = aValue;
+ return sal_True;
+}
+
+sal_Bool SfxUsrAnyItem::PutValue( const com::sun::star::uno::Any& rVal, BYTE nMemberId )
+{
+ aValue = rVal;
+ return sal_True;
+}
+
sal_Bool SfxFrame::BrowseInFrame( int nDelta )
{
return sal_False;