summaryrefslogtreecommitdiff
path: root/svx/inc
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2004-07-06 12:05:56 +0000
committerOliver Bolte <obo@openoffice.org>2004-07-06 12:05:56 +0000
commit29c293686e88ba4b170d99bd51ca3a2ef2450c2c (patch)
treee7600302017fbede4caf51c97ff62e5885cae41e /svx/inc
parentd6b177b688c1492a7ff695cb033a2d3875eeffdc (diff)
INTEGRATION: CWS docking1 (1.2.98); FILE MERGED
2004/04/28 16:21:19 cd 1.2.98.1: #i26252# Fixes for toolbox controllers/items that used non-convertible items
Diffstat (limited to 'svx/inc')
-rw-r--r--svx/inc/ofaitem.hxx22
1 files changed, 19 insertions, 3 deletions
diff --git a/svx/inc/ofaitem.hxx b/svx/inc/ofaitem.hxx
index f11170c486ca..2900e25d4a14 100644
--- a/svx/inc/ofaitem.hxx
+++ b/svx/inc/ofaitem.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: ofaitem.hxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: hr $ $Date: 2004-02-03 17:32:23 $
+ * last change: $Author: obo $ $Date: 2004-07-06 13:05:56 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -82,8 +82,24 @@ public:
virtual SfxPoolItem* Clone( SfxItemPool *pPool = 0 ) const;
void* GetValue() const { return pPtr; }
+ void SetValue( void* pNewPtr ) { pPtr = pNewPtr; }
};
+/*
+class SvxDashListPtrItem : public OfaPtrItem
+{
+ public:
+ TYPEINFO();
+ SvxDashListPtrItem( USHORT nWhich, SvxDashListItem* pPtr );
+ SvxDashListPtrItem( const DashListPtrItem& );
-#endif
+ virtual int operator==( const SfxPoolItem& ) const;
+ virtual SfxPoolItem* Clone( SfxItemPool *pPool = 0 ) const;
+ virtual sal_Bool QueryValue( com::sun::star::uno::Any& rVal, BYTE nMemberId = 0 ) const;
+ virtual sal_Bool PutValue( const com::sun::star::uno::Any& rVal, BYTE nMemberId = 0 );
+
+ SvxDashListPtrItem* GetValue() const { return OfaPtrItem::GetValue(); }
+};
+*/
+#endif