summaryrefslogtreecommitdiff
path: root/sw/source/core/fields/usrfld.cxx
diff options
context:
space:
mode:
authorJoachim Lingner <jl@openoffice.org>2001-03-23 11:08:40 +0000
committerJoachim Lingner <jl@openoffice.org>2001-03-23 11:08:40 +0000
commit705d6dfeaa285c5a5addb2ba5f480ce1b3f8c798 (patch)
tree2aa49df685297ccd96cdefca779d616fa6c43304 /sw/source/core/fields/usrfld.cxx
parent5bb8df73aa9cfe931eeeb186a9a3d08296b6fc5c (diff)
replaced: Double->double
Diffstat (limited to 'sw/source/core/fields/usrfld.cxx')
-rw-r--r--sw/source/core/fields/usrfld.cxx8
1 files changed, 4 insertions, 4 deletions
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;