summaryrefslogtreecommitdiff
path: root/xmloff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-07-27 22:07:45 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-07-27 22:07:45 +0100
commitcaf32ed7d29d4aa7478e5fb84b4d8eb8ce9c617a (patch)
tree0e97fd5f97869014d659ffa4e6694986e14cb18f /xmloff
parent08790c82c37866ab790d8a2503cbb4ceef4cf626 (diff)
callcatcher: remove unused disaster waiting to happen
Diffstat (limited to 'xmloff')
-rw-r--r--xmloff/inc/xmloff/xmluconv.hxx5
-rw-r--r--xmloff/source/core/xmluconv.cxx12
2 files changed, 0 insertions, 17 deletions
diff --git a/xmloff/inc/xmloff/xmluconv.hxx b/xmloff/inc/xmloff/xmluconv.hxx
index c593e99ebbbb..f73641c78c71 100644
--- a/xmloff/inc/xmloff/xmluconv.hxx
+++ b/xmloff/inc/xmloff/xmluconv.hxx
@@ -101,11 +101,6 @@ private:
// #110680#
::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory > mxServiceFactory;
- SAL_DLLPRIVATE static ::rtl::OUString msXML_false;
- SAL_DLLPRIVATE static ::rtl::OUString msXML_true;
-
- SAL_DLLPRIVATE static void initXMLStrings();
-
SAL_DLLPRIVATE void createNumTypeInfo() const;
public:
diff --git a/xmloff/source/core/xmluconv.cxx b/xmloff/source/core/xmluconv.cxx
index 89a94aeeb146..26558939a515 100644
--- a/xmloff/source/core/xmluconv.cxx
+++ b/xmloff/source/core/xmluconv.cxx
@@ -71,18 +71,6 @@ const sal_Int8 XML_MAXDIGITSCOUNT_TIME = 11;
const sal_Int8 XML_MAXDIGITSCOUNT_DATETIME = 6;
#define XML_NULLDATE "NullDate"
-OUString SvXMLUnitConverter::msXML_true;
-OUString SvXMLUnitConverter::msXML_false;
-
-void SvXMLUnitConverter::initXMLStrings()
-{
- if( msXML_true.getLength() == 0 )
- {
- msXML_true = GetXMLToken(XML_TRUE);
- msXML_false = GetXMLToken(XML_FALSE);
- }
-}
-
void SvXMLUnitConverter::createNumTypeInfo() const
{
if( mxServiceFactory.is() )