summaryrefslogtreecommitdiff
path: root/unotools
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-02-09 21:45:24 +0000
committerCaolán McNamara <caolanm@redhat.com>2012-02-09 21:45:24 +0000
commitb950727ac84c9baa00b957dd80174de2f4a4e5c5 (patch)
tree96909985845be07320a1f3bfa5362e7d8103975e /unotools
parente78c13f75a0fcb615ce678c9e940ed49607d30b7 (diff)
utl: delete unused NodeValueAccessor::bind() method
Diffstat (limited to 'unotools')
-rw-r--r--unotools/source/config/configvaluecontainer.cxx10
1 files changed, 0 insertions, 10 deletions
diff --git a/unotools/source/config/configvaluecontainer.cxx b/unotools/source/config/configvaluecontainer.cxx
index eb950b25bc59..03f994834b85 100644
--- a/unotools/source/config/configvaluecontainer.cxx
+++ b/unotools/source/config/configvaluecontainer.cxx
@@ -68,7 +68,6 @@ namespace utl
NodeValueAccessor( const ::rtl::OUString& _rNodePath );
void bind( void* _pLocation, const Type& _rType );
- void bind( Any* _pLocation );
bool isBound( ) const { return ( ltUnbound != eLocationType ) && ( NULL != pLocation ); }
const ::rtl::OUString& getPath( ) const { return sRelativePath; }
@@ -103,15 +102,6 @@ namespace utl
aDataType = _rType;
}
- void NodeValueAccessor::bind( Any* _pLocation )
- {
- DBG_ASSERT( !isBound(), "NodeValueAccessor::bind: already bound!" );
-
- eLocationType = ltAnyInstance;
- pLocation = _pLocation;
- aDataType = ::getCppuType( _pLocation );
- }
-
#ifndef UNX
static
#endif