From c07fe0d98b14bce18ba676b7dcec6c6245b55660 Mon Sep 17 00:00:00 2001 From: Kohei Yoshida Date: Wed, 25 Jul 2012 16:29:26 -0400 Subject: Remove unused parameter. Change-Id: Ib6539528655c5def0d0802602ec913799f0ab07a --- sfx2/inc/sfx2/sfxhtml.hxx | 2 +- sfx2/source/bastyp/sfxhtml.cxx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'sfx2') diff --git a/sfx2/inc/sfx2/sfxhtml.hxx b/sfx2/inc/sfx2/sfxhtml.hxx index e0ccf592b3c5..971d79390b42 100644 --- a/sfx2/inc/sfx2/sfxhtml.hxx +++ b/sfx2/inc/sfx2/sfxhtml.hxx @@ -81,7 +81,7 @@ protected: // up by FinishFileDownload. To cancel the download should a shell be // left. It can only exist a single download at the same time, For every // started download FinshFileDownload must be called. - void StartFileDownload( const String& rURL, SfxObjectShell *pSh=0 ); + void StartFileDownload(const OUString& rURL); // End of an asynchronous file download. Returns TRUE if the download // was successful. The read file is then passed into String. diff --git a/sfx2/source/bastyp/sfxhtml.cxx b/sfx2/source/bastyp/sfxhtml.cxx index fd6578db27d1..9c6425957b50 100644 --- a/sfx2/source/bastyp/sfxhtml.cxx +++ b/sfx2/source/bastyp/sfxhtml.cxx @@ -225,7 +225,7 @@ IMAPOBJ_SETEVENT: return bNewArea; } -void SfxHTMLParser::StartFileDownload( const String& rURL, SfxObjectShell* /*pSh*/ ) +void SfxHTMLParser::StartFileDownload(const OUString& rURL) { DBG_ASSERT( !pDLMedium, "StartFileDownload when active Download" ); if( pDLMedium ) -- cgit