diff options
author | th <th@openoffice.org> | 2001-05-11 09:48:57 +0000 |
---|---|---|
committer | th <th@openoffice.org> | 2001-05-11 09:48:57 +0000 |
commit | d57b4a3bdf428ae0f6b50775a1de3f827c10b946 (patch) | |
tree | 5345d89bf6e561f744490215cda981aa1c214e53 /xmloff | |
parent | 21956975de025cbb0299d6929b307881604a6438 (diff) |
corrtect rtl-string-changes
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/core/xmluconv.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/xmloff/source/core/xmluconv.cxx b/xmloff/source/core/xmluconv.cxx index f41d515c8194..578aaceda6be 100644 --- a/xmloff/source/core/xmluconv.cxx +++ b/xmloff/source/core/xmluconv.cxx @@ -2,9 +2,9 @@ * * $RCSfile: xmluconv.cxx,v $ * - * $Revision: 1.14 $ + * $Revision: 1.15 $ * - * last change: $Author: th $ $Date: 2001-05-11 10:37:59 $ + * last change: $Author: th $ $Date: 2001-05-11 10:48:57 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -1206,7 +1206,7 @@ sal_Bool SvXMLUnitConverter::convertDateTime( double& fDateTime, if ( aTimeStr.getLength() > 0 ) // time is optional { - pStr = aDateStr.getStr(); + pStr = aTimeStr.getStr(); sal_Int32 nTimeTokens = 1; while ( *pStr ) { @@ -1347,7 +1347,7 @@ sal_Bool SvXMLUnitConverter::convertDateTime( com::sun::star::util::DateTime& rD if ( aTimeStr.getLength() > 0 ) // time is optional { - pStr = aDateStr.getStr(); + pStr = aTimeStr.getStr(); sal_Int32 nTimeTokens = 1; while ( *pStr ) { |