summaryrefslogtreecommitdiff
path: root/toolkit/source/controls/tree
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-12-12 12:23:58 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-12-12 12:23:58 +0100
commit45fe77164c90cf15b78cd8b99adc043e2dd26be1 (patch)
treec1b55843aebe28b167c087b51e7ba110180cf600 /toolkit/source/controls/tree
parente965798caf75054d8fc826a4cfa33524cbbcec42 (diff)
toolkit: Use appropriate OUString functions on string constants
Change-Id: I3bb1e560eb325046f5b170da0c4c46c1139f3225
Diffstat (limited to 'toolkit/source/controls/tree')
-rw-r--r--toolkit/source/controls/tree/treecontrol.cxx6
-rw-r--r--toolkit/source/controls/tree/treecontrol.hxx2
2 files changed, 4 insertions, 4 deletions
diff --git a/toolkit/source/controls/tree/treecontrol.cxx b/toolkit/source/controls/tree/treecontrol.cxx
index b5af991c644f..54df3a0f1ba8 100644
--- a/toolkit/source/controls/tree/treecontrol.cxx
+++ b/toolkit/source/controls/tree/treecontrol.cxx
@@ -80,7 +80,7 @@ UnoControlModel* UnoTreeModel::Clone() const
OUString UnoTreeModel::getServiceName() throw(RuntimeException, std::exception)
{
- return OUString::createFromAscii( szServiceName_TreeControlModel );
+ return OUString( "com.sun.star.awt.tree.TreeControlModel" );
}
Any UnoTreeModel::ImplGetDefaultValue( sal_uInt16 nPropId ) const
@@ -101,7 +101,7 @@ Any UnoTreeModel::ImplGetDefaultValue( sal_uInt16 nPropId ) const
case BASEPROPERTY_TREE_SHOWSHANDLES:
return Any( sal_True );
case BASEPROPERTY_DEFAULTCONTROL:
- return uno::makeAny( OUString::createFromAscii( szServiceName_TreeControl ) );
+ return uno::makeAny( OUString( "com.sun.star.awt.tree.TreeControl" ) );
default:
return UnoControlModel::ImplGetDefaultValue( nPropId );
}
@@ -180,7 +180,7 @@ public:
virtual void SAL_CALL removeTreeEditListener( const css::uno::Reference< css::awt::tree::XTreeEditListener >& Listener ) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
// css::lang::XServiceInfo
- DECLIMPL_SERVICEINFO_DERIVED( UnoTreeControl, UnoControlBase, szServiceName_TreeControl )
+ DECLIMPL_SERVICEINFO_DERIVED( UnoTreeControl, UnoControlBase, "com.sun.star.awt.tree.TreeControl" )
using UnoControl::getPeer;
private:
diff --git a/toolkit/source/controls/tree/treecontrol.hxx b/toolkit/source/controls/tree/treecontrol.hxx
index 97eb4cca7330..f6bed0357c9b 100644
--- a/toolkit/source/controls/tree/treecontrol.hxx
+++ b/toolkit/source/controls/tree/treecontrol.hxx
@@ -51,7 +51,7 @@ public:
OUString SAL_CALL getServiceName() throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
// XServiceInfo
- DECLIMPL_SERVICEINFO_DERIVED( UnoTreeModel, UnoControlModel, szServiceName_TreeControlModel )
+ DECLIMPL_SERVICEINFO_DERIVED( UnoTreeModel, UnoControlModel, "com.sun.star.awt.tree.TreeControlModel" )
};
} // toolkit