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/inc | |
parent | dca04e236193db7de908aad746fd4539e78eb428 (diff) |
callcatcher: some unused methods
Diffstat (limited to 'unotools/inc')
-rw-r--r-- | unotools/inc/unotools/confignode.hxx | 14 | ||||
-rw-r--r-- | unotools/inc/unotools/configvaluecontainer.hxx | 24 |
2 files changed, 0 insertions, 38 deletions
diff --git a/unotools/inc/unotools/confignode.hxx b/unotools/inc/unotools/confignode.hxx index baa812d28d56..f1567a6137e6 100644 --- a/unotools/inc/unotools/confignode.hxx +++ b/unotools/inc/unotools/confignode.hxx @@ -248,12 +248,6 @@ namespace utl ::com::sun::star::uno::Reference< ::com::sun::star::util::XChangesBatch > m_xCommitter; protected: - /** ctor<p/> - */ - OConfigurationTreeRoot( - const ::com::sun::star::uno::Reference< ::com::sun::star::util::XChangesBatch >& _rxRootNode - ); - /** ctor for a readonly node */ OConfigurationTreeRoot( @@ -280,14 +274,6 @@ namespace utl */ OConfigurationTreeRoot( const ::comphelper::ComponentContext& i_rContext, - const sal_Char* i_pAsciiNodePath, - const bool i_bUpdatable - ); - - /** creates a configuration tree for the given path in the given mode - */ - OConfigurationTreeRoot( - const ::comphelper::ComponentContext& i_rContext, const ::rtl::OUString& i_rNodePath, const bool i_bUpdatable ); diff --git a/unotools/inc/unotools/configvaluecontainer.hxx b/unotools/inc/unotools/configvaluecontainer.hxx index 99d9ff072efa..589de073f534 100644 --- a/unotools/inc/unotools/configvaluecontainer.hxx +++ b/unotools/inc/unotools/configvaluecontainer.hxx @@ -104,30 +104,6 @@ namespace utl const sal_Int32 _nLevels = -1 ); - /** constructs the object - - @param _rxORB - specifies the service factory which should be used to access the configuration - @param _rAccessSafety - As this class is intented to manipulate objects it does not hold itself (see the various - registerXXX methods), it needs to guard these access for muti threading safety.<br/> - The mutex given here is locked whenever such an access occurs. - @param _rConfigLocation - describes the configurations node path - @param _nAccessFlags - specifies different aspects of the configuration aspect to be created, e.g. it's update mode etc.<br/> - See the CVC_xxx constants for what you can use here. - @param _nLevels - specifies the number of levels to access under the node given by <arg>_pConfigLocation</arg> - */ - OConfigurationValueContainer( - const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& _rxORB, - ::osl::Mutex& _rAccessSafety, - const ::rtl::OUString& _rConfigLocation, - const sal_uInt16 _nAccessFlags = CVC_UPDATE_ACCESS | CVC_LAZY_UPDATE, - const sal_Int32 _nLevels = -1 - ); - /// dtor ~OConfigurationValueContainer(); |