diff options
author | Jan Holesovsky <kendy@collabora.com> | 2014-04-10 14:49:52 +0200 |
---|---|---|
committer | Jan Holesovsky <kendy@collabora.com> | 2014-04-10 15:07:53 +0200 |
commit | 31911865e5bda29ff2394ddf80244fbf15517657 (patch) | |
tree | a543512d1b65a6007ff80238c1759812aea30a38 /sw | |
parent | 148d5192fc5d57c10045b837cc245fc018f13f64 (diff) |
DownLoad -> Download.
Change-Id: Ia1729f570cc80a0375532da6478de9d58518556e
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/core/uibase/app/docsh2.cxx | 2 | ||||
-rw-r--r-- | sw/source/core/uibase/docvw/edtwin.cxx | 2 | ||||
-rw-r--r-- | sw/source/core/uibase/uiview/view2.cxx | 2 | ||||
-rw-r--r-- | sw/source/core/unocore/unocrsrhelper.cxx | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/sw/source/core/uibase/app/docsh2.cxx b/sw/source/core/uibase/app/docsh2.cxx index 9ae3e47158f6..8c0cfbd14538 100644 --- a/sw/source/core/uibase/app/docsh2.cxx +++ b/sw/source/core/uibase/app/docsh2.cxx @@ -1542,7 +1542,7 @@ int SwFindDocShell( SfxObjectShellRef& xDocSh, SfxMedium* pMed = new SfxMedium( aTmpObj.GetMainURL( INetURLObject::NO_DECODE ), STREAM_READ ); if( INET_PROT_FILE == aTmpObj.GetProtocol() ) - pMed->DownLoad(); // Touch the medium (download it) + pMed->Download(); // Touch the medium (download it) const SfxFilter* pSfxFlt = 0; if( !pMed->GetError() ) diff --git a/sw/source/core/uibase/docvw/edtwin.cxx b/sw/source/core/uibase/docvw/edtwin.cxx index 2534400bfff7..bda06cfec446 100644 --- a/sw/source/core/uibase/docvw/edtwin.cxx +++ b/sw/source/core/uibase/docvw/edtwin.cxx @@ -299,7 +299,7 @@ inline bool IsMinMove(const Point &rStartPos, const Point &rLPt) * For MouseButtonDown - determine whether a DrawObject * an NO SwgFrame was hit! Shift/Ctrl should only result * in selecting, with DrawObjects; at SwgFlys to trigger - * hyperlinks if applicable (DownLoad/NewWindow!) + * hyperlinks if applicable (Download/NewWindow!) */ inline bool IsDrawObjSelectable( const SwWrtShell& rSh, const Point& rPt ) { diff --git a/sw/source/core/uibase/uiview/view2.cxx b/sw/source/core/uibase/uiview/view2.cxx index ccfd4f7d7fbf..5964f8e43358 100644 --- a/sw/source/core/uibase/uiview/view2.cxx +++ b/sw/source/core/uibase/uiview/view2.cxx @@ -2161,7 +2161,7 @@ long SwView::InsertMedium( sal_uInt16 nSlotId, SfxMedium* pMedium, sal_Int16 nVe return -1; } - pMedium->DownLoad(); // start download if needed + pMedium->Download(); // start download if needed if( aRef.Is() && 1 < aRef->GetRefCount() ) // still a valid ref? { SwReader* pRdr; diff --git a/sw/source/core/unocore/unocrsrhelper.cxx b/sw/source/core/unocore/unocrsrhelper.cxx index 71ccd9bb78b7..c74bc9f00302 100644 --- a/sw/source/core/unocore/unocrsrhelper.cxx +++ b/sw/source/core/unocore/unocrsrhelper.cxx @@ -1061,7 +1061,7 @@ void InsertFile(SwUnoCrsr* pUnoCrsr, const OUString& rURL, // this sourcecode is not responsible for the lifetime of the shell, SfxObjectShellLock should not be used SfxObjectShellRef aRef( pDocSh ); - pMed->DownLoad(); // if necessary: start the download + pMed->Download(); // if necessary: start the download if( aRef.Is() && 1 < aRef->GetRefCount() ) // Ref still valid? { SwReader* pRdr; |