diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2005-03-08 14:38:33 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2005-03-08 14:38:33 +0000 |
commit | 2615e559c46d70ba1142dfc509fd391882c218cb (patch) | |
tree | db915c2451b17d4195c98e805fee1f96e478c4ea /xmloff/source | |
parent | 474fac9ba60806133abe6682693640a9643f4624 (diff) |
INTEGRATION: CWS calc30 (1.55.98); FILE MERGED
2005/02/18 11:32:49 sab 1.55.98.1: #119760#; don't cache all
Diffstat (limited to 'xmloff/source')
-rw-r--r-- | xmloff/source/text/txtfldi.cxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/xmloff/source/text/txtfldi.cxx b/xmloff/source/text/txtfldi.cxx index 34bbd8aa9d5b..be5736be64c9 100644 --- a/xmloff/source/text/txtfldi.cxx +++ b/xmloff/source/text/txtfldi.cxx @@ -2,9 +2,9 @@ * * $RCSfile: txtfldi.cxx,v $ * - * $Revision: 1.55 $ + * $Revision: 1.56 $ * - * last change: $Author: hr $ $Date: 2004-11-09 12:19:52 $ + * last change: $Author: vg $ $Date: 2005-03-08 15:38:33 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -1757,8 +1757,8 @@ void XMLDatabaseNextImportContext::ProcessAttribute( if (XML_TOK_TEXTFIELD_CONDITION == nAttrToken) { OUString sTmp; - sal_uInt16 nPrefix = GetImport().GetNamespaceMap().GetKeyByAttrName( - sAttrValue, &sTmp ); + sal_uInt16 nPrefix = GetImport().GetNamespaceMap()._GetKeyByAttrName( + sAttrValue, &sTmp, sal_False ); if( XML_NAMESPACE_OOOW == nPrefix ) { sCondition = sTmp; @@ -2314,8 +2314,8 @@ void XMLHiddenParagraphImportContext::ProcessAttribute( if (XML_TOK_TEXTFIELD_CONDITION == nAttrToken) { OUString sTmp; - sal_uInt16 nPrefix = GetImport().GetNamespaceMap().GetKeyByAttrName( - sAttrValue, &sTmp ); + sal_uInt16 nPrefix = GetImport().GetNamespaceMap()._GetKeyByAttrName( + sAttrValue, &sTmp, sal_False ); if( XML_NAMESPACE_OOOW == nPrefix ) { sCondition = sTmp; @@ -2383,7 +2383,7 @@ void XMLConditionalTextImportContext::ProcessAttribute( { OUString sTmp; sal_uInt16 nPrefix = GetImport().GetNamespaceMap(). - GetKeyByAttrName( sAttrValue, &sTmp ); + _GetKeyByAttrName( sAttrValue, &sTmp, sal_False ); if( XML_NAMESPACE_OOOW == nPrefix ) { sCondition = sTmp; @@ -2470,7 +2470,7 @@ void XMLHiddenTextImportContext::ProcessAttribute( { OUString sTmp; sal_uInt16 nPrefix = GetImport().GetNamespaceMap(). - GetKeyByAttrName( sAttrValue, &sTmp ); + _GetKeyByAttrName( sAttrValue, &sTmp, sal_False ); if( XML_NAMESPACE_OOOW == nPrefix ) { sCondition = sTmp; |