summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
Diffstat (limited to 'svx')
-rw-r--r--svx/source/core/extedit.cxx2
-rw-r--r--svx/source/fmcomp/fmgridcl.cxx4
-rw-r--r--svx/source/form/datanavi.cxx2
-rw-r--r--svx/source/svdraw/svdoole2.cxx2
4 files changed, 5 insertions, 5 deletions
diff --git a/svx/source/core/extedit.cxx b/svx/source/core/extedit.cxx
index d87cc92a3a85..0568defa3ff1 100644
--- a/svx/source/core/extedit.cxx
+++ b/svx/source/core/extedit.cxx
@@ -122,7 +122,7 @@ void ExternalToolEdit::Edit(GraphicObject const*const pGraphicObject)
}
// Move it to a file name with image extension properly set
- aTempFileName = aTempFileBase + "." + OUString(fExtension);
+ aTempFileName = aTempFileBase + "." + fExtension;
// FIXME: this is pretty stupid, need a better osl temp file API
rc = osl::File::move(aTempFileBase, aTempFileName);
if (osl::FileBase::E_None != rc)
diff --git a/svx/source/fmcomp/fmgridcl.cxx b/svx/source/fmcomp/fmgridcl.cxx
index 51744355fa5a..9f913c0ec943 100644
--- a/svx/source/fmcomp/fmgridcl.cxx
+++ b/svx/source/fmcomp/fmgridcl.cxx
@@ -580,9 +580,9 @@ IMPL_LINK_NOARG( FmGridHeader, OnAsyncExecuteDrop, void*, void )
sRealName += "_";
sRealName += sPurePostfix;
if (i)
- xSecondCol->setPropertyValue(FM_PROP_NAME, makeAny(OUString(sRealName)));
+ xSecondCol->setPropertyValue(FM_PROP_NAME, makeAny(sRealName));
else
- xCol->setPropertyValue(FM_PROP_NAME, makeAny(OUString(sRealName)));
+ xCol->setPropertyValue(FM_PROP_NAME, makeAny(sRealName));
}
}
else
diff --git a/svx/source/form/datanavi.cxx b/svx/source/form/datanavi.cxx
index 7862c8f1ea5b..c90354bbc7b8 100644
--- a/svx/source/form/datanavi.cxx
+++ b/svx/source/form/datanavi.cxx
@@ -2403,7 +2403,7 @@ namespace svxform
{
m_xTempBinding->setPropertyValue(
- sPropName, makeAny( OUString( sNewCondition ) ) );
+ sPropName, makeAny( sNewCondition ) );
}
}
}
diff --git a/svx/source/svdraw/svdoole2.cxx b/svx/source/svdraw/svdoole2.cxx
index 7f26842fa0b7..caa16f3c76cd 100644
--- a/svx/source/svdraw/svdoole2.cxx
+++ b/svx/source/svdraw/svdoole2.cxx
@@ -827,7 +827,7 @@ bool SdrOle2Obj::UpdateLinkURL_Impl()
// TODO/LATER: there should be possible to get current mediadescriptor settings from the object
uno::Sequence< beans::PropertyValue > aArgs( 1 );
aArgs[0].Name = "URL";
- aArgs[0].Value <<= OUString( aNewLinkURL );
+ aArgs[0].Value <<= aNewLinkURL;
xPersObj->reload( aArgs, uno::Sequence< beans::PropertyValue >() );
mpImpl->maLinkURL = aNewLinkURL;