summaryrefslogtreecommitdiff
path: root/xmlhelp/source/treeview/tvread.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'xmlhelp/source/treeview/tvread.cxx')
-rw-r--r--xmlhelp/source/treeview/tvread.cxx36
1 files changed, 16 insertions, 20 deletions
diff --git a/xmlhelp/source/treeview/tvread.cxx b/xmlhelp/source/treeview/tvread.cxx
index 3dffd29d251d..53b56c71d358 100644
--- a/xmlhelp/source/treeview/tvread.cxx
+++ b/xmlhelp/source/treeview/tvread.cxx
@@ -312,13 +312,12 @@ TVRead::getByHierarchicalName( const OUString& aName )
RuntimeException, std::exception )
{
sal_Int32 idx;
- OUString name( aName );
- if( ( idx = name.indexOf( '/' ) ) != -1 &&
- name.copy( 0,idx ) == "Children" )
- return Children->getByHierarchicalName( name.copy( 1 + idx ) );
+ if( ( idx = aName.indexOf( '/' ) ) != -1 &&
+ aName.copy( 0,idx ) == "Children" )
+ return Children->getByHierarchicalName( aName.copy( 1 + idx ) );
- return getByName( name );
+ return getByName( aName );
}
sal_Bool SAL_CALL
@@ -326,13 +325,12 @@ TVRead::hasByHierarchicalName( const OUString& aName )
throw( RuntimeException, std::exception )
{
sal_Int32 idx;
- OUString name( aName );
- if( ( idx = name.indexOf( '/' ) ) != -1 &&
- name.copy( 0,idx ) == "Children" )
- return Children->hasByHierarchicalName( name.copy( 1 + idx ) );
+ if( ( idx = aName.indexOf( '/' ) ) != -1 &&
+ aName.copy( 0,idx ) == "Children" )
+ return Children->hasByHierarchicalName( aName.copy( 1 + idx ) );
- return hasByName( name );
+ return hasByName( aName );
}
/**************************************************************************/
@@ -573,20 +571,19 @@ TVChildTarget::getByHierarchicalName( const OUString& aName )
RuntimeException, std::exception )
{
sal_Int32 idx;
- OUString name( aName );
- if( ( idx = name.indexOf( '/' ) ) != -1 )
+ if( ( idx = aName.indexOf( '/' ) ) != -1 )
{
- OUString num( name.getStr()+2,idx-4 );
+ OUString num( aName.getStr()+2,idx-4 );
sal_Int32 pref = num.toInt32() - 1;
if( pref < 0 || Elements.size() <= sal_uInt32( pref ) )
throw NoSuchElementException();
- return Elements[pref]->getByHierarchicalName( name.copy( 1 + idx ) );
+ return Elements[pref]->getByHierarchicalName( aName.copy( 1 + idx ) );
}
else
- return getByName( name );
+ return getByName( aName );
}
sal_Bool SAL_CALL
@@ -594,19 +591,18 @@ TVChildTarget::hasByHierarchicalName( const OUString& aName )
throw( RuntimeException, std::exception )
{
sal_Int32 idx;
- OUString name( aName );
- if( ( idx = name.indexOf( '/' ) ) != -1 )
+ if( ( idx = aName.indexOf( '/' ) ) != -1 )
{
- OUString num( name.getStr()+2,idx-4 );
+ OUString num( aName.getStr()+2,idx-4 );
sal_Int32 pref = num.toInt32() - 1;
if( pref < 0 || Elements.size() <= sal_uInt32( pref ) )
return false;
- return Elements[pref]->hasByHierarchicalName( name.copy( 1 + idx ) );
+ return Elements[pref]->hasByHierarchicalName( aName.copy( 1 + idx ) );
}
else
- return hasByName( name );
+ return hasByName( aName );
}
ConfigData TVChildTarget::init( const Reference< XComponentContext >& xContext )