diff options
author | Kohei Yoshida <kohei.yoshida@gmail.com> | 2012-07-25 16:29:26 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@gmail.com> | 2012-07-25 16:29:26 -0400 |
commit | c07fe0d98b14bce18ba676b7dcec6c6245b55660 (patch) | |
tree | 4cc5fcd1f5edfb16a2b3f4e07b96e7babee9bddf /sfx2 | |
parent | 3824ec8ea57db309f00b79337c81b7401dc19c58 (diff) |
Remove unused parameter.
Change-Id: Ib6539528655c5def0d0802602ec913799f0ab07a
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/inc/sfx2/sfxhtml.hxx | 2 | ||||
-rw-r--r-- | sfx2/source/bastyp/sfxhtml.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
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 ) |