summaryrefslogtreecommitdiff
path: root/sc/inc/patattr.hxx
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2003-05-21 06:54:08 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2003-05-21 06:54:08 +0000
commit640c431f0f62d56b9c2b002a4c5c73c829236d74 (patch)
tree3e038da706cffe09e421686f92a0091e66891208 /sc/inc/patattr.hxx
parent4d3c0b49aeb1930b68c01796ab187c813cf27e30 (diff)
INTEGRATION: CWS dr3 (1.8.20); FILE MERGED
2003/05/19 10:41:25 dr 1.8.20.1: #i12188# static functions for item set conversion
Diffstat (limited to 'sc/inc/patattr.hxx')
-rw-r--r--sc/inc/patattr.hxx16
1 files changed, 11 insertions, 5 deletions
diff --git a/sc/inc/patattr.hxx b/sc/inc/patattr.hxx
index b478acad5679..6b0216fcae78 100644
--- a/sc/inc/patattr.hxx
+++ b/sc/inc/patattr.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: patattr.hxx,v $
*
- * $Revision: 1.8 $
+ * $Revision: 1.9 $
*
- * last change: $Author: rt $ $Date: 2003-04-08 16:18:08 $
+ * last change: $Author: rt $ $Date: 2003-05-21 07:54:08 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -143,9 +143,15 @@ public:
BYTE nScript = 0, const Color* pBackConfigColor = NULL,
const Color* pTextConfigColor = NULL ) const;
- void FillEditItemSet( SfxItemSet* pSet,
- const SfxItemSet* pCondSet = NULL ) const;
- void GetFromEditItemSet( const SfxItemSet* pSet );
+ /** Converts all Calc items contained in rSrcSet to edit engine items and puts them into rEditSet. */
+ static void FillToEditItemSet( SfxItemSet& rEditSet, const SfxItemSet& rSrcSet, const SfxItemSet* pCondSet = NULL );
+ /** Converts all Calc items contained in the own item set to edit engine items and puts them into pEditSet. */
+ void FillEditItemSet( SfxItemSet* pEditSet, const SfxItemSet* pCondSet = NULL ) const;
+
+ /** Converts all edit engine items contained in rEditSet to Calc items and puts them into rDestSet. */
+ static void GetFromEditItemSet( SfxItemSet& rDestSet, const SfxItemSet& rEditSet );
+ /** Converts all edit engine items contained in pEditSet to Calc items and puts them into the own item set. */
+ void GetFromEditItemSet( const SfxItemSet* pEditSet );
void FillEditParaItems( SfxItemSet* pSet ) const;