summaryrefslogtreecommitdiff
path: root/sfx2/source/appl
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-08-23 17:23:52 +0200
committerNoel Grandin <noel@peralex.com>2013-08-29 09:30:05 +0200
commit4779373d47341258cec36cc2178dff6ae11e5750 (patch)
tree686d3b2c2b8ed2a33c75af7a1a89d7fd9c935b2d /sfx2/source/appl
parent309559f1eef2bac804821f7a07737e3d338d566f (diff)
convert includes/sfx2/lnkbase.hxx from String to OUString
Change-Id: I3816ec77dd334823100421dab90d4bc8b67542e3
Diffstat (limited to 'sfx2/source/appl')
-rw-r--r--sfx2/source/appl/lnkbase2.cxx18
1 files changed, 9 insertions, 9 deletions
diff --git a/sfx2/source/appl/lnkbase2.cxx b/sfx2/source/appl/lnkbase2.cxx
index e9d025c14f1f..3692a1654050 100644
--- a/sfx2/source/appl/lnkbase2.cxx
+++ b/sfx2/source/appl/lnkbase2.cxx
@@ -150,7 +150,7 @@ SvBaseLink::SvBaseLink( sal_uInt16 nUpdateMode, sal_uIntPtr nContentType )
//--------------------------------------------------------------------------
-SvBaseLink::SvBaseLink( const String& rLinkName, sal_uInt16 nObjectType, SvLinkSource* pObj )
+SvBaseLink::SvBaseLink( const OUString& rLinkName, sal_uInt16 nObjectType, SvLinkSource* pObj )
: pImpl(0)
{
bVisible = bSynchron = bUseCache = sal_True;
@@ -204,7 +204,7 @@ SvBaseLink::~SvBaseLink()
delete pImpl;
}
-IMPL_LINK( SvBaseLink, EndEditHdl, String*, _pNewName )
+IMPL_LINK( SvBaseLink, EndEditHdl, OUString*, _pNewName )
{
String sNewName;
if ( _pNewName )
@@ -229,7 +229,7 @@ void SvBaseLink::SetObjType( sal_uInt16 nObjTypeP )
//--------------------------------------------------------------------------
-void SvBaseLink::SetName( const String & rNm )
+void SvBaseLink::SetName( const OUString & rNm )
{
aLinkName = rNm;
}
@@ -247,7 +247,7 @@ void SvBaseLink::SetObj( SvLinkSource * pObj )
//--------------------------------------------------------------------------
-void SvBaseLink::SetLinkSourceName( const String & rLnkNm )
+void SvBaseLink::SetLinkSourceName( const OUString & rLnkNm )
{
if( aLinkName == rLnkNm )
return;
@@ -265,7 +265,7 @@ void SvBaseLink::SetLinkSourceName( const String & rLnkNm )
//--------------------------------------------------------------------------
-String SvBaseLink::GetLinkSourceName() const
+OUString SvBaseLink::GetLinkSourceName() const
{
return aLinkName;
}
@@ -424,7 +424,7 @@ void SvBaseLink::Disconnect()
}
}
-SvBaseLink::UpdateResult SvBaseLink::DataChanged( const String &, const ::com::sun::star::uno::Any & )
+SvBaseLink::UpdateResult SvBaseLink::DataChanged( const OUString &, const ::com::sun::star::uno::Any & )
{
switch( nObjType )
{
@@ -474,9 +474,9 @@ void SvBaseLink::Edit( Window* pParent, const Link& rEndEditHdl )
}
}
-bool SvBaseLink::ExecuteEdit( const String& _rNewName )
+bool SvBaseLink::ExecuteEdit( const OUString& _rNewName )
{
- if( _rNewName.Len() != 0 )
+ if( !_rNewName.isEmpty() )
{
SetLinkSourceName( _rNewName );
if( !Update() )
@@ -519,7 +519,7 @@ void SvBaseLink::Closed()
xObj->RemoveAllDataAdvise( this );
}
-FileDialogHelper & SvBaseLink::GetInsertFileDialog(const String& rFactory) const
+FileDialogHelper & SvBaseLink::GetInsertFileDialog(const OUString& rFactory) const
{
if ( pImpl->m_pFileDlg )
delete pImpl->m_pFileDlg;