diff options
author | Stephan Bergmann <sb@openoffice.org> | 2000-12-20 16:39:00 +0000 |
---|---|---|
committer | Stephan Bergmann <sb@openoffice.org> | 2000-12-20 16:39:00 +0000 |
commit | 7c251abe48d02fe4d426d29ca340223f44f05cee (patch) | |
tree | 6ad5053a39baece5ab9a6f296e7d5c72cb7a66ec /tools | |
parent | 7eda135a70a870191b66d57d0f5b06dcee345166 (diff) |
#82022# Fixed typos causing variables in inner blocks hiding those in outer ones.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/source/inet/inetmime.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/source/inet/inetmime.cxx b/tools/source/inet/inetmime.cxx index a1d70a045222..ff4da40897aa 100644 --- a/tools/source/inet/inetmime.cxx +++ b/tools/source/inet/inetmime.cxx @@ -2,9 +2,9 @@ * * $RCSfile: inetmime.cxx,v $ * - * $Revision: 1.1.1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: hr $ $Date: 2000-09-18 17:03:07 $ + * last change: $Author: sb $ $Date: 2000-12-20 17:39:00 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -1146,7 +1146,7 @@ sal_Char const * INetMIME::scanParameters(sal_Char const * pBegin, sal_Char const * pAttributeBegin = skipLinearWhiteSpaceComment(p, pEnd); - sal_Char const * p = pAttributeBegin; + p = pAttributeBegin; bool bDowncaseAttribute = false; while (p != pEnd && isTokenChar(*p) && *p != '*') { @@ -1348,7 +1348,7 @@ sal_Unicode const * INetMIME::scanParameters(sal_Unicode const * pBegin, sal_Unicode const * pAttributeBegin = skipLinearWhiteSpaceComment(p, pEnd); - sal_Unicode const * p = pAttributeBegin; + p = pAttributeBegin; bool bDowncaseAttribute = false; while (p != pEnd && isTokenChar(*p) && *p != '*') { |