summaryrefslogtreecommitdiff
path: root/xmloff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-09-28 21:07:19 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-09-29 09:33:44 +0100
commitc50612d51619fb92393f32c6832628ffbbdcb920 (patch)
tree0f3c7976073cf1eb1dc47545647b91e4d8462097 /xmloff
parent42fe8b9f11da41530a6d914397b6301a72db3800 (diff)
callcatcher: unused code
Diffstat (limited to 'xmloff')
-rw-r--r--xmloff/inc/MultiPropertySetHelper.hxx2
-rw-r--r--xmloff/source/style/MultiPropertySetHelper.cxx20
2 files changed, 0 insertions, 22 deletions
diff --git a/xmloff/inc/MultiPropertySetHelper.hxx b/xmloff/inc/MultiPropertySetHelper.hxx
index a64e8c8524dd..2c7d7abf7f96 100644
--- a/xmloff/inc/MultiPropertySetHelper.hxx
+++ b/xmloff/inc/MultiPropertySetHelper.hxx
@@ -90,8 +90,6 @@ public:
MultiPropertySetHelper( const sal_Char** pNames );
- MultiPropertySetHelper( const ::rtl::OUString* pNames );
-
~MultiPropertySetHelper();
diff --git a/xmloff/source/style/MultiPropertySetHelper.cxx b/xmloff/source/style/MultiPropertySetHelper.cxx
index dc5e2eee6cc7..ae3f9636435d 100644
--- a/xmloff/source/style/MultiPropertySetHelper.cxx
+++ b/xmloff/source/style/MultiPropertySetHelper.cxx
@@ -72,25 +72,6 @@ MultiPropertySetHelper::MultiPropertySetHelper(
pPropertyNames[i] = OUString::createFromAscii( pNames[i] );
}
-MultiPropertySetHelper::MultiPropertySetHelper(
- const OUString* pNames ) :
- pPropertyNames( NULL ),
- nLength( 0 ),
- aPropertySequence(),
- pSequenceIndex( NULL ),
- aValues(),
- pValues( NULL )
-{
- // count elements
- for( const OUString* pPtr = pNames; pPtr != NULL; pPtr++ )
- nLength++;
-
- // allocate array and assign strings
- pPropertyNames = new OUString[nLength];
- for( sal_Int16 i = 0; i < nLength; i++ )
- pPropertyNames[i] = pNames[i];
-}
-
MultiPropertySetHelper::~MultiPropertySetHelper()
{
@@ -101,7 +82,6 @@ MultiPropertySetHelper::~MultiPropertySetHelper()
}
-
void MultiPropertySetHelper::hasProperties(
const Reference<XPropertySetInfo> & rInfo )
{