summaryrefslogtreecommitdiff
path: root/sfx2/source/doc/objstor.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sfx2/source/doc/objstor.cxx')
-rw-r--r--sfx2/source/doc/objstor.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sfx2/source/doc/objstor.cxx b/sfx2/source/doc/objstor.cxx
index 46fca81d2ea2..ed67e58d5a11 100644
--- a/sfx2/source/doc/objstor.cxx
+++ b/sfx2/source/doc/objstor.cxx
@@ -2102,7 +2102,7 @@ void SfxObjectShell::AddToRecentlyUsedList()
if ( aUrl.GetProtocol() == INetProtocol::File )
{
std::shared_ptr<const SfxFilter> pOrgFilter = pMedium->GetOrigFilter();
- Application::AddToRecentDocumentList( aUrl.GetURLNoPass( INetURLObject::NO_DECODE ),
+ Application::AddToRecentDocumentList( aUrl.GetURLNoPass( INetURLObject::DecodeMechanism::NONE ),
(pOrgFilter) ? pOrgFilter->GetMimeType() : OUString(),
(pOrgFilter) ? pOrgFilter->GetServiceName() : OUString() );
}
@@ -2654,7 +2654,7 @@ bool SfxObjectShell::CommonSaveAs_Impl(const INetURLObject& aURL, const OUString
const SfxBoolItem* pCopyStreamItem = rItemSet.GetItem<SfxBoolItem>(SID_COPY_STREAM_IF_POSSIBLE, false);
if ( bSaveTo && pCopyStreamItem && pCopyStreamItem->GetValue() && !IsModified() )
{
- if (pMedium->TryDirectTransfer(aURL.GetMainURL(INetURLObject::NO_DECODE), rItemSet))
+ if (pMedium->TryDirectTransfer(aURL.GetMainURL(INetURLObject::DecodeMechanism::NONE), rItemSet))
return true;
}
rItemSet.ClearItem( SID_COPY_STREAM_IF_POSSIBLE );
@@ -2678,9 +2678,9 @@ bool SfxObjectShell::CommonSaveAs_Impl(const INetURLObject& aURL, const OUString
OUString aTempFileURL;
if ( IsDocShared() )
- aTempFileURL = pMedium->GetURLObject().GetMainURL( INetURLObject::NO_DECODE );
+ aTempFileURL = pMedium->GetURLObject().GetMainURL( INetURLObject::DecodeMechanism::NONE );
- if (PreDoSaveAs_Impl(aURL.GetMainURL(INetURLObject::NO_DECODE), aFilterName, rItemSet))
+ if (PreDoSaveAs_Impl(aURL.GetMainURL(INetURLObject::DecodeMechanism::NONE), aFilterName, rItemSet))
{
// Update Data on media
SfxItemSet *pSet = GetMedium()->GetItemSet();
9 14:28:13 +0100'>2014-12-19No need for RTL_USING in addition to LIBO_INTERNAL_ONLYStephan Bergmann 2014-12-18Introduce gb_*_set_external_codeStephan Bergmann 2014-12-04mysqlc: loplugin:cstylecastStephan Bergmann 2014-11-18mysqlc: fix build after cppuhelper header cleanupMichael Stahl 2014-11-14fdo#86023 - O[U]String needs a 'clear' methodBrij Mohan Lal Srivastava 2014-11-05fdo#38835 strip out OUString globalsNoel Grandin 2014-10-23fdo#83991 - cleanup whitespace after folding comment removal.Vinicius Vendramini 2014-10-22fdo#83991 - remove redundant function folding comments.Vinicius Vendramini 2014-10-01mysqlc: These shall be plain "Time" not "tools::Time" apparentlyStephan Bergmann 2014-10-01fdo#82577: Handle TimeNoel Grandin 2014-09-30mysqlc: std::auto_ptr -> std::unique_ptrStephan Bergmann 2014-09-24Remove o3tl/heap_ptr.hxx, use std::unique_ptr insteadStephan Bergmann 2014-09-17Translate German comment.Michael Meeks 2014-09-09fdo#83656 mariadb C client library incompatible with newer MySQL Connector/C++Lionel Elie Mamane 2014-08-11update mysqlc READMELionel Elie Mamane 2014-07-02mysqlc: sal_Bool -> boolStephan Bergmann 2014-05-30deb#749592 mysql-connector doesn't work with remote connectionsNoel Grandin 2014-05-29use OUString::startsWith()Noel Grandin 2014-05-29remove more unnecesary OUString constructor useNoel Grandin 2014-05-23Prefer cppu::UnoType<T>::get() to ::getCppuType((T*)0) part20Julien Nabet 2014-05-11Kill DECL_PROP1IMPL and relatedJulien Nabet 2014-05-06simplify ternary conditions "xxx ? true : yyy"Noel Grandin 2014-04-19fixincludeguards.sh: some smaller dirsThomas Arnhold 2014-04-07Do not use sal/log.hxx in extensionsStephan Bergmann 2014-04-04fdo#43157 : clean up more OSL_POSTCONDMichaël Lefèvre