diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-11-16 22:36:26 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-11-17 23:04:10 +0000 |
commit | cee0d7a26a5098f6c39ac3ce634632a432402379 (patch) | |
tree | 7db7031733d238a62e32bd233a2f796aad487118 /unotools/source | |
parent | dca04e236193db7de908aad746fd4539e78eb428 (diff) |
callcatcher: some unused methods
Diffstat (limited to 'unotools/source')
-rw-r--r-- | unotools/source/config/confignode.cxx | 22 | ||||
-rw-r--r-- | unotools/source/config/configvaluecontainer.cxx | 8 |
2 files changed, 0 insertions, 30 deletions
diff --git a/unotools/source/config/confignode.cxx b/unotools/source/config/confignode.cxx index 264eda0f59ce..b4c574b24de3 100644 --- a/unotools/source/config/confignode.cxx +++ b/unotools/source/config/confignode.cxx @@ -547,15 +547,6 @@ namespace utl return NULL; } } - //======================================================================== - //= OConfigurationTreeRoot - //======================================================================== - //------------------------------------------------------------------------ - OConfigurationTreeRoot::OConfigurationTreeRoot( const Reference< XChangesBatch >& _rxRootNode ) - :OConfigurationNode( _rxRootNode.get() ) - ,m_xCommitter(_rxRootNode) - { - } //------------------------------------------------------------------------ OConfigurationTreeRoot::OConfigurationTreeRoot( const Reference< XInterface >& _rxRootNode ) @@ -565,19 +556,6 @@ namespace utl } //------------------------------------------------------------------------ - OConfigurationTreeRoot::OConfigurationTreeRoot( const ::comphelper::ComponentContext& i_rContext, const sal_Char* i_pAsciiNodePath, const bool i_bUpdatable ) - :OConfigurationNode( lcl_createConfigurationRoot( lcl_getConfigProvider( i_rContext.getLegacyServiceFactory() ), - ::rtl::OUString::createFromAscii( i_pAsciiNodePath ), i_bUpdatable, -1, false ).get() ) - ,m_xCommitter() - { - if ( i_bUpdatable ) - { - m_xCommitter.set( getUNONode(), UNO_QUERY ); - OSL_ENSURE( m_xCommitter.is(), "OConfigurationTreeRoot::OConfigurationTreeRoot: could not create an updatable node!" ); - } - } - - //------------------------------------------------------------------------ OConfigurationTreeRoot::OConfigurationTreeRoot( const ::comphelper::ComponentContext& i_rContext, const ::rtl::OUString& i_rNodePath, const bool i_bUpdatable ) :OConfigurationNode( lcl_createConfigurationRoot( lcl_getConfigProvider( i_rContext.getLegacyServiceFactory() ), i_rNodePath, i_bUpdatable, -1, false ).get() ) diff --git a/unotools/source/config/configvaluecontainer.cxx b/unotools/source/config/configvaluecontainer.cxx index 999d3a64fc5f..ad1f196b66d8 100644 --- a/unotools/source/config/configvaluecontainer.cxx +++ b/unotools/source/config/configvaluecontainer.cxx @@ -258,14 +258,6 @@ namespace utl implConstruct( ::rtl::OUString::createFromAscii( _pConfigLocation ), _nAccessFlags, _nLevels ); } - OConfigurationValueContainer::OConfigurationValueContainer( - const Reference< XMultiServiceFactory >& _rxORB, ::osl::Mutex& _rAccessSafety, - const ::rtl::OUString& _rConfigLocation, const sal_uInt16 _nAccessFlags, const sal_Int32 _nLevels ) - :m_pImpl( new OConfigurationValueContainerImpl( _rxORB, _rAccessSafety ) ) - { - implConstruct( _rConfigLocation, _nAccessFlags, _nLevels ); - } - OConfigurationValueContainer::~OConfigurationValueContainer() { delete m_pImpl; |