summaryrefslogtreecommitdiff
path: root/xmloff
diff options
context:
space:
mode:
authorChristian Lippka <cl@openoffice.org>2001-01-17 15:32:02 +0000
committerChristian Lippka <cl@openoffice.org>2001-01-17 15:32:02 +0000
commit11bec248ccb980c56b638b8852c6f759f08d18b3 (patch)
treeb3fcc9247bcf2b28b29e678a2cf04731dac4f1ff /xmloff
parent00af2c4ca76a35f7add85266e3a316ede1d9b847 (diff)
fixed a compare error
Diffstat (limited to 'xmloff')
-rw-r--r--xmloff/source/style/xmltabi.cxx7
1 files changed, 3 insertions, 4 deletions
diff --git a/xmloff/source/style/xmltabi.cxx b/xmloff/source/style/xmltabi.cxx
index dc9158395aa3..7067c968ac7b 100644
--- a/xmloff/source/style/xmltabi.cxx
+++ b/xmloff/source/style/xmltabi.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: xmltabi.cxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: mib $ $Date: 2001-01-05 10:01:15 $
+ * last change: $Author: cl $ $Date: 2001-01-17 16:32:02 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -266,8 +266,7 @@ SvXMLImportContext *SvxXMLTabStopImportContext::CreateChildContext(
{
SvXMLImportContext *pContext = 0;
- if( XML_NAMESPACE_STYLE == nPrefix &&
- 0 == rLocalName.equalsAsciiL( sXML_tab_stop , sizeof( sXML_tab_stop ) ) )
+ if( XML_NAMESPACE_STYLE == nPrefix && rLocalName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( sXML_tab_stop ) ) )
{
// create new tabstop import context
SvxXMLTabStopContext_Impl *pTabStopContext =