diff options
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/dialogs/insdlg.cxx | 2 | ||||
-rw-r--r-- | cui/source/dialogs/thesdlg.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/cui/source/dialogs/insdlg.cxx b/cui/source/dialogs/insdlg.cxx index ca663f9996ed..fe127421ac19 100644 --- a/cui/source/dialogs/insdlg.cxx +++ b/cui/source/dialogs/insdlg.cxx @@ -307,7 +307,7 @@ short SvInsertOleDlg::Execute() // create MediaDescriptor for file to create object from uno::Sequence < beans::PropertyValue > aMedium( 2 ); aMedium[0].Name = "URL"; - aMedium[0].Value <<= OUString( aFileName ); + aMedium[0].Value <<= aFileName; uno::Reference< uno::XComponentContext > xContext = ::comphelper::getProcessComponentContext(); uno::Reference< task::XInteractionHandler2 > xInteraction( diff --git a/cui/source/dialogs/thesdlg.cxx b/cui/source/dialogs/thesdlg.cxx index 3d44a8593994..299176c7e131 100644 --- a/cui/source/dialogs/thesdlg.cxx +++ b/cui/source/dialogs/thesdlg.cxx @@ -330,7 +330,7 @@ bool SvxThesaurusDialog::UpdateAlternativesBox_Impl() void SvxThesaurusDialog::LookUp( const OUString &rText ) { - if (OUString(rText) != m_pWordCB->GetText()) // avoid moving of the cursor if the text is the same + if (rText != m_pWordCB->GetText()) // avoid moving of the cursor if the text is the same m_pWordCB->SetText( rText ); LookUp_Impl(); } |