diff options
author | Rüdiger Timm <rt@openoffice.org> | 2002-12-02 15:36:06 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2002-12-02 15:36:06 +0000 |
commit | 19343d7a0eb7f630c38744fa8c9567e775fabeed (patch) | |
tree | 4bf5b1e520c5f9459cc645c1e18aeefa1c843b35 /psprint | |
parent | edcbb95e8bd962a5ac33b7e5eb2986bbfb4e054a (diff) |
#85375#,#100000# The default parameter for INetURLObject::GetMainURL has been removed.
Diffstat (limited to 'psprint')
-rw-r--r-- | psprint/source/fontmanager/fontmanager.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/psprint/source/fontmanager/fontmanager.cxx b/psprint/source/fontmanager/fontmanager.cxx index 8fb6ad133878..2954b3b3f3d9 100644 --- a/psprint/source/fontmanager/fontmanager.cxx +++ b/psprint/source/fontmanager/fontmanager.cxx @@ -2,9 +2,9 @@ * * $RCSfile: fontmanager.cxx,v $ * - * $Revision: 1.31 $ + * $Revision: 1.32 $ * - * last change: $Author: pl $ $Date: 2002-11-15 16:15:05 $ + * last change: $Author: rt $ $Date: 2002-12-02 16:36:06 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -2620,7 +2620,7 @@ int PrintFontManager::importFonts( const ::std::list< OString >& rFiles, bool bL nError = (FileBase::RC)symlink( aFromPath.GetBuffer(), aToPath.GetBuffer() ); } else - nError = File::copy( aFromAfm.GetMainURL(), aToAfm.GetMainURL() ); + nError = File::copy( aFromAfm.GetMainURL(INetURLObject::DECODE_TO_IURI), aToAfm.GetMainURL(INetURLObject::DECODE_TO_IURI) ); if( nError ) { if( pCallback ) @@ -2636,7 +2636,7 @@ int PrintFontManager::importFonts( const ::std::list< OString >& rFiles, bool bL nError = (FileBase::RC)symlink( aFromPath.GetBuffer(), aToPath.GetBuffer() ); } else - nError = File::copy( aFrom.GetMainURL(), aTo.GetMainURL() ); + nError = File::copy( aFrom.GetMainURL(INetURLObject::DECODE_TO_IURI), aTo.GetMainURL(INetURLObject::DECODE_TO_IURI) ); // copy font file if( nError ) { |