From 705d6dfeaa285c5a5addb2ba5f480ce1b3f8c798 Mon Sep 17 00:00:00 2001 From: Joachim Lingner Date: Fri, 23 Mar 2001 11:08:40 +0000 Subject: replaced: Double->double --- sw/source/core/fields/usrfld.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'sw/source/core/fields/usrfld.cxx') diff --git a/sw/source/core/fields/usrfld.cxx b/sw/source/core/fields/usrfld.cxx index 8b56abcd9c28..1f0990d0b9b9 100644 --- a/sw/source/core/fields/usrfld.cxx +++ b/sw/source/core/fields/usrfld.cxx @@ -2,9 +2,9 @@ * * $RCSfile: usrfld.cxx,v $ * - * $Revision: 1.1.1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: hr $ $Date: 2000-09-19 00:08:19 $ + * last change: $Author: jl $ $Date: 2001-03-23 12:06:16 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -392,7 +392,7 @@ BOOL SwUserFieldType::QueryValue( uno::Any& rAny, const String& rProperty ) cons { if(rProperty.EqualsAscii(UNO_NAME_VALUE)) { - rAny <<= (Double) nValue; + rAny <<= (double) nValue; } else if(rProperty.EqualsAscii(UNO_NAME_CONTENT)) { @@ -416,7 +416,7 @@ BOOL SwUserFieldType::PutValue( const uno::Any& rAny, const String& rProperty ) { if(rProperty.EqualsAscii(UNO_NAME_VALUE)) { - Double fVal; + double fVal; rAny >>= fVal; nValue = fVal; -- cgit v1.2.3