diff options
author | Noel Grandin <noel@peralex.com> | 2013-08-26 12:25:46 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-08-29 09:30:05 +0200 |
commit | df00d4c230d15951ad31405a3ea77e0faeebcb75 (patch) | |
tree | ba94eeced1948b943bcfbeb2fc614d4f396b335a /sfx2/source/appl/linksrc.cxx | |
parent | 4779373d47341258cec36cc2178dff6ae11e5750 (diff) |
convert include/sfx2/linksrc.hxx from String to OUString
Change-Id: I2ee2be4b87ef6f7fa9064ff742ccf4c854d7fea8
Diffstat (limited to 'sfx2/source/appl/linksrc.cxx')
-rw-r--r-- | sfx2/source/appl/linksrc.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sfx2/source/appl/linksrc.cxx b/sfx2/source/appl/linksrc.cxx index 1a0d8cb6f36e..9bc5c9c0d3f5 100644 --- a/sfx2/source/appl/linksrc.cxx +++ b/sfx2/source/appl/linksrc.cxx @@ -311,7 +311,7 @@ void SvLinkSource::NotifyDataChanged() // notify the sink, the mime type is not // a selection criterion -void SvLinkSource::DataChanged( const String & rMimeType, +void SvLinkSource::DataChanged( const OUString & rMimeType, const ::com::sun::star::uno::Any & rVal ) { if( pImpl->nTimeout && !rVal.hasValue() ) @@ -349,7 +349,7 @@ void SvLinkSource::DataChanged( const String & rMimeType, // only one link is correct -void SvLinkSource::AddDataAdvise( SvBaseLink * pLink, const String& rMimeType, +void SvLinkSource::AddDataAdvise( SvBaseLink * pLink, const OUString& rMimeType, sal_uInt16 nAdviseModes ) { SvLinkSource_Entry_Impl* pNew = new SvLinkSource_Entry_Impl( @@ -415,7 +415,7 @@ sal_Bool SvLinkSource::Connect( SvBaseLink* ) return sal_True; } -sal_Bool SvLinkSource::GetData( ::com::sun::star::uno::Any &, const String &, sal_Bool ) +sal_Bool SvLinkSource::GetData( ::com::sun::star::uno::Any &, const OUString &, sal_Bool ) { return sal_False; } |