summaryrefslogtreecommitdiff
path: root/svx
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 /svx
parent309559f1eef2bac804821f7a07737e3d338d566f (diff)
convert includes/sfx2/lnkbase.hxx from String to OUString
Change-Id: I3816ec77dd334823100421dab90d4bc8b67542e3
Diffstat (limited to 'svx')
-rw-r--r--svx/source/svdraw/svdograf.cxx4
-rw-r--r--svx/source/svdraw/svdoole2.cxx4
-rw-r--r--svx/source/svdraw/svdotxln.cxx4
3 files changed, 6 insertions, 6 deletions
diff --git a/svx/source/svdraw/svdograf.cxx b/svx/source/svdraw/svdograf.cxx
index 65ef13a0278d..550ea103a99d 100644
--- a/svx/source/svdraw/svdograf.cxx
+++ b/svx/source/svdraw/svdograf.cxx
@@ -111,7 +111,7 @@ public:
virtual void Closed();
virtual ::sfx2::SvBaseLink::UpdateResult DataChanged(
- const String& rMimeType, const ::com::sun::star::uno::Any & rValue );
+ const OUString& rMimeType, const ::com::sun::star::uno::Any & rValue );
void DataChanged( const Graphic& rGraphic );
bool Connect() { return 0 != GetRealObject(); }
@@ -209,7 +209,7 @@ void SdrGraphicLink::RemoveGraphicUpdater()
}
::sfx2::SvBaseLink::UpdateResult SdrGraphicLink::DataChanged(
- const String& rMimeType, const ::com::sun::star::uno::Any & rValue )
+ const OUString& rMimeType, const ::com::sun::star::uno::Any & rValue )
{
SdrModel* pModel = pGrafObj ? pGrafObj->GetModel() : 0;
sfx2::LinkManager* pLinkManager= pModel ? pModel->GetLinkManager() : 0;
diff --git a/svx/source/svdraw/svdoole2.cxx b/svx/source/svdraw/svdoole2.cxx
index b97bf73733af..b49ce9d25584 100644
--- a/svx/source/svdraw/svdoole2.cxx
+++ b/svx/source/svdraw/svdoole2.cxx
@@ -603,7 +603,7 @@ public:
virtual void Closed();
virtual ::sfx2::SvBaseLink::UpdateResult DataChanged(
- const String& rMimeType, const ::com::sun::star::uno::Any & rValue );
+ const OUString& rMimeType, const ::com::sun::star::uno::Any & rValue );
bool Connect() { return GetRealObject() != NULL; }
};
@@ -626,7 +626,7 @@ SdrEmbedObjectLink::~SdrEmbedObjectLink()
// -----------------------------------------------------------------------------
::sfx2::SvBaseLink::UpdateResult SdrEmbedObjectLink::DataChanged(
- const String& /*rMimeType*/, const ::com::sun::star::uno::Any & /*rValue*/ )
+ const OUString& /*rMimeType*/, const ::com::sun::star::uno::Any & /*rValue*/ )
{
if ( !pObj->UpdateLinkURL_Impl() )
{
diff --git a/svx/source/svdraw/svdotxln.cxx b/svx/source/svdraw/svdotxln.cxx
index ebbd5f2a4f0b..ec379dfc8537 100644
--- a/svx/source/svdraw/svdotxln.cxx
+++ b/svx/source/svdraw/svdotxln.cxx
@@ -47,7 +47,7 @@ public:
virtual void Closed();
virtual ::sfx2::SvBaseLink::UpdateResult DataChanged(
- const String& rMimeType, const ::com::sun::star::uno::Any & rValue );
+ const OUString& rMimeType, const ::com::sun::star::uno::Any & rValue );
bool Connect() { return 0 != SvBaseLink::GetRealObject(); }
};
@@ -70,7 +70,7 @@ void ImpSdrObjTextLink::Closed()
::sfx2::SvBaseLink::UpdateResult ImpSdrObjTextLink::DataChanged(
- const String& /*rMimeType*/, const ::com::sun::star::uno::Any & /*rValue */)
+ const OUString& /*rMimeType*/, const ::com::sun::star::uno::Any & /*rValue */)
{
bool bForceReload = false;
SdrModel* pModel = pSdrObj ? pSdrObj->GetModel() : 0;