summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorMarc-André Laverdière-Papineau <marc-andre@atc.tcs.com>2012-03-04 20:31:05 -0500
committerMarc-André Laverdière-Papineau <marc-andre@atc.tcs.com>2012-03-04 21:26:14 -0500
commit6457d8bf66c7860dcde037cda98a7d3363d6f651 (patch)
treeb945bbbb8a3a3000924e7704680cfa91d3e9ca6c /svx
parent1d6cadf516c682b9cad0a103519569da8a104016 (diff)
Removed dead code
Diffstat (limited to 'svx')
-rw-r--r--svx/source/table/propertyset.cxx14
-rw-r--r--svx/source/table/propertyset.hxx2
2 files changed, 0 insertions, 16 deletions
diff --git a/svx/source/table/propertyset.cxx b/svx/source/table/propertyset.cxx
index ef15231d672c..9043a7ca81cb 100644
--- a/svx/source/table/propertyset.cxx
+++ b/svx/source/table/propertyset.cxx
@@ -40,12 +40,6 @@ namespace comphelper {
// FastPropertySetInfo
// -----------------------------------------------------------------------------
-FastPropertySetInfo::FastPropertySetInfo()
-{
-}
-
-// -----------------------------------------------------------------------------
-
FastPropertySetInfo::FastPropertySetInfo( const PropertyVector& rProps )
{
addProperties( rProps );
@@ -59,14 +53,6 @@ FastPropertySetInfo::~FastPropertySetInfo()
// -----------------------------------------------------------------------------
-void FastPropertySetInfo::addProperty( const Property& rProperty )
-{
- maProperties.push_back( rProperty );
- maMap[ rProperty.Name ] = maProperties.size() - 1;
-}
-
-// -----------------------------------------------------------------------------
-
void FastPropertySetInfo::addProperties( const PropertyVector& rProps )
{
sal_uInt32 nIndex = maProperties.size();
diff --git a/svx/source/table/propertyset.hxx b/svx/source/table/propertyset.hxx
index 31cce8511a78..3f1cc3fa86d8 100644
--- a/svx/source/table/propertyset.hxx
+++ b/svx/source/table/propertyset.hxx
@@ -52,11 +52,9 @@ typedef boost::unordered_map< ::rtl::OUString, ::sal_uInt32, ::rtl::OUStringHash
class FastPropertySetInfo : public ::cppu::WeakAggImplHelper1< ::com::sun::star::beans::XPropertySetInfo >
{
public:
- FastPropertySetInfo();
FastPropertySetInfo( const PropertyVector& rProps );
virtual ~FastPropertySetInfo();
- void addProperty( const ::com::sun::star::beans::Property& rProperty );
void addProperties( const PropertyVector& rProps );
const ::com::sun::star::beans::Property& getProperty( const ::rtl::OUString& aName ) throw (::com::sun::star::beans::UnknownPropertyException );