diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 20:25:50 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 20:25:50 +0000 |
commit | aa072f175ae40875d106b67607a1ee0deed8fd30 (patch) | |
tree | 41bd25f11e0af7944d75202f3e18a3e77bb17498 /svtools | |
parent | 7a210bb09aa7bb6876e36c0aaf6e6c2e9663d297 (diff) |
INTEGRATION: CWS warnings01 (1.17.8); FILE MERGED
2005/11/15 19:56:02 pl 1.17.8.1: #i55991# removed warnings
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/svhtml/htmlout.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/svtools/source/svhtml/htmlout.cxx b/svtools/source/svhtml/htmlout.cxx index 75809ff3b2e5..ab1cbd641627 100644 --- a/svtools/source/svhtml/htmlout.cxx +++ b/svtools/source/svhtml/htmlout.cxx @@ -4,9 +4,9 @@ * * $RCSfile: htmlout.cxx,v $ * - * $Revision: 1.17 $ + * $Revision: 1.18 $ * - * last change: $Author: hr $ $Date: 2005-10-27 15:51:29 $ + * last change: $Author: hr $ $Date: 2006-06-19 21:25:50 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -700,12 +700,12 @@ SvStream& HTMLOutFuncs::Out_ImageMap( SvStream& rStream, else rStream << sHTML_O_nohref; - const String& rName = pObj->GetName(); - if( rName.Len() ) + const String& rObjName = pObj->GetName(); + if( rObjName.Len() ) { ((sOut = ' ') += sHTML_O_name) += "=\""; rStream << sOut.GetBuffer(); - Out_String( rStream, rName, eDestEnc, pNonConvertableChars ) << '\"'; + Out_String( rStream, rObjName, eDestEnc, pNonConvertableChars ) << '\"'; } const String& rTarget = pObj->GetTarget(); |