summaryrefslogtreecommitdiff
path: root/sw/source
diff options
context:
space:
mode:
authorThomas Lange <tl@openoffice.org>2002-09-13 11:45:15 +0000
committerThomas Lange <tl@openoffice.org>2002-09-13 11:45:15 +0000
commite1c8486083687152a782df0871422136869b56f4 (patch)
treef8e1ebeff9e68f03ea5634d9a5d4e12486e14955 /sw/source
parent0f07a05ef882223d0033fd2e35ad3118c5f02cf6 (diff)
#102773# com.sun.star.text.Text added to list of supported services
Diffstat (limited to 'sw/source')
-rw-r--r--sw/source/core/unocore/unoftn.cxx14
1 files changed, 8 insertions, 6 deletions
diff --git a/sw/source/core/unocore/unoftn.cxx b/sw/source/core/unocore/unoftn.cxx
index eb2e76138555..1c11e955c517 100644
--- a/sw/source/core/unocore/unoftn.cxx
+++ b/sw/source/core/unocore/unoftn.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: unoftn.cxx,v $
*
- * $Revision: 1.17 $
+ * $Revision: 1.18 $
*
- * last change: $Author: tl $ $Date: 2002-09-12 13:06:12 $
+ * last change: $Author: tl $ $Date: 2002-09-13 12:45:15 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -150,8 +150,9 @@ OUString SwXFootnote::getImplementationName(void) throw( RuntimeException )
---------------------------------------------------------------------------*/
BOOL SwXFootnote::supportsService(const OUString& rServiceName) throw( RuntimeException )
{
- return !rServiceName.compareToAscii("com.sun.star.text.Footnote") ||
- !rServiceName.compareToAscii("com.sun.star.text.TextContent") ||
+ return !rServiceName.compareToAscii("com.sun.star.text.Footnote") ||
+ !rServiceName.compareToAscii("com.sun.star.text.TextContent") ||
+ !rServiceName.compareToAscii("com.sun.star.text.Text") ||
(m_bIsEndnote && !rServiceName.compareToAscii("com.sun.star.text.Endnote"));
;
}
@@ -160,12 +161,13 @@ BOOL SwXFootnote::supportsService(const OUString& rServiceName) throw( RuntimeEx
---------------------------------------------------------------------------*/
Sequence< OUString > SwXFootnote::getSupportedServiceNames(void) throw( RuntimeException )
{
- Sequence< OUString > aRet(m_bIsEndnote ? 3 : 2);
+ Sequence< OUString > aRet(m_bIsEndnote ? 4 : 3);
OUString* pArray = aRet.getArray();
pArray[0] = C2U("com.sun.star.text.Footnote");
pArray[1] = C2U("com.sun.star.text.TextContent");
+ pArray[2] = C2U("com.sun.star.text.Text");
if(m_bIsEndnote)
- pArray[2] = C2U("com.sun.star.text.Endnote");
+ pArray[3] = C2U("com.sun.star.text.Endnote");
return aRet;
}
/*-- 10.12.98 15:31:44---------------------------------------------------