diff options
author | Oliver Specht <os@openoffice.org> | 2000-12-09 13:24:09 +0000 |
---|---|---|
committer | Oliver Specht <os@openoffice.org> | 2000-12-09 13:24:09 +0000 |
commit | f55a1db1df7e7008c5bb228602e0d01b1eac60f4 (patch) | |
tree | bfc7e837291bd31317105dd8d9b159c02e417b98 | |
parent | b60309d973d23431ff1995dba39c02edd092a9dc (diff) |
#79468# DocumentIndexMarks property for content indexes
-rw-r--r-- | sw/source/core/unocore/unomap.cxx | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/sw/source/core/unocore/unomap.cxx b/sw/source/core/unocore/unomap.cxx index 8bab19ecc23e..d5f3346be124 100644 --- a/sw/source/core/unocore/unomap.cxx +++ b/sw/source/core/unocore/unomap.cxx @@ -2,9 +2,9 @@ * * $RCSfile: unomap.cxx,v $ * - * $Revision: 1.29 $ + * $Revision: 1.30 $ * - * last change: $Author: os $ $Date: 2000-12-09 14:04:08 $ + * last change: $Author: os $ $Date: 2000-12-09 14:24:09 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -1482,6 +1482,11 @@ const SfxItemPropertyMap* SwUnoPropertyMapProvider::GetPropertyMap(sal_uInt16 { MAP_CHAR_LEN("ParaStyleLevel9"), WID_PARA_LEV9, &::getCppuType((const OUString*)0) , 0, 0}, { MAP_CHAR_LEN("ParaStyleLevel10"), WID_PARA_LEV10, &::getCppuType((const OUString*)0) , 0, 0}, { SW_PROP_NAME(UNO_NAME_IS_RELATIVE_TABSTOPS), WID_IS_RELATIVE_TABSTOPS, &::getBooleanCppuType(), PROPERTY_NONE, 0}, +#if (defined(__SUNPRO_CC) && (__SUNPRO_CC == 0x500)) || (defined(__GNUC__) && defined(__APPLE__)) + { SW_PROP_NAME(UNO_NAME_DOCUMENT_INDEX_MARKS), WID_INDEX_MARKS, new uno::Type(::getCppuType((Sequence< Reference< XDocumentIndexMark > >*)0)), PropertyAttribute::READONLY ,0 }, +#else + { SW_PROP_NAME(UNO_NAME_DOCUMENT_INDEX_MARKS), WID_INDEX_MARKS, &::getCppuType((Sequence< Reference< XDocumentIndexMark > >*)0), PropertyAttribute::READONLY ,0 }, +#endif {0,0,0,0} }; aMapArr[nPropertyId] = aTOXContentMap_Impl; |