diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2007-08-02 16:07:32 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2007-08-02 16:07:32 +0000 |
commit | cb0685cb2aa329321eb3c1d4f236f976e4ce06c9 (patch) | |
tree | 96bc28dd26dcba958f48be7b459c986b6c73d1dc /sfx2 | |
parent | d3f1f6acf5a49ed22256ab69c45903ceb46a0fb1 (diff) |
INTEGRATION: CWS fwk69 (1.191.8); FILE MERGED
2007/07/20 08:35:23 mav 1.191.8.1: #i66598# accept empty DocumentBaseURL
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/doc/docfile.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sfx2/source/doc/docfile.cxx b/sfx2/source/doc/docfile.cxx index adc6a94c13d8..b52ea8511679 100644 --- a/sfx2/source/doc/docfile.cxx +++ b/sfx2/source/doc/docfile.cxx @@ -4,9 +4,9 @@ * * $RCSfile: docfile.cxx,v $ * - * $Revision: 1.193 $ + * $Revision: 1.194 $ * - * last change: $Author: obo $ $Date: 2007-07-18 09:01:44 $ + * last change: $Author: hr $ $Date: 2007-08-02 17:07:32 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -591,10 +591,10 @@ Reference < XContent > SfxMedium::GetContent() const catch ( ::com::sun::star::uno::Exception& ) { } - } - if ( !aBaseURL.getLength() ) - aBaseURL = GetURLObject().GetMainURL( INetURLObject::NO_DECODE ); + if ( !aBaseURL.getLength() ) + aBaseURL = GetURLObject().GetMainURL( INetURLObject::NO_DECODE ); + } if ( bForSaving ) { |