summaryrefslogtreecommitdiff
path: root/sw/source/core/fields
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
parent5bb8df73aa9cfe931eeeb186a9a3d08296b6fc5c (diff)
replaced: Double->double
Diffstat (limited to 'sw/source/core/fields')
-rw-r--r--sw/source/core/fields/docufld.cxx6
-rw-r--r--sw/source/core/fields/expfld.cxx6
-rw-r--r--sw/source/core/fields/usrfld.cxx8
3 files changed, 10 insertions, 10 deletions
diff --git a/sw/source/core/fields/docufld.cxx b/sw/source/core/fields/docufld.cxx
index bab61c9097c3..8111b2222744 100644
--- a/sw/source/core/fields/docufld.cxx
+++ b/sw/source/core/fields/docufld.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: docufld.cxx,v $
*
- * $Revision: 1.14 $
+ * $Revision: 1.15 $
*
- * last change: $Author: os $ $Date: 2001-03-13 10:40:48 $
+ * 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
@@ -1244,7 +1244,7 @@ BOOL SwDocInfoField::QueryValue( uno::Any& rAny, const String& rProperty ) const
}
else if(rProperty.EqualsAscii(UNO_NAME_DATE_TIME_VALUE))
{
- Double fVal = GetValue();
+ double fVal = GetValue();
rAny.setValue(&fVal, ::getCppuType(&fVal));
}
else if(rProperty.EqualsAscii(UNO_NAME_CURRENT_PRESENTATION))
diff --git a/sw/source/core/fields/expfld.cxx b/sw/source/core/fields/expfld.cxx
index 2e7b3cb2230c..49019208559d 100644
--- a/sw/source/core/fields/expfld.cxx
+++ b/sw/source/core/fields/expfld.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: expfld.cxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: os $ $Date: 2000-11-13 08:38:04 $
+ * 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
@@ -1198,7 +1198,7 @@ BOOL SwSetExpField::QueryValue( uno::Any& rAny, const String& rProperty ) const
rAny <<= OUString( sFormula );
}
else if( rProperty.EqualsAscii( UNO_NAME_VALUE ))
- rAny <<= (Double)GetValue();
+ rAny <<= (double)GetValue();
else if( rProperty.EqualsAscii( UNO_NAME_SUB_TYPE ))
{
sal_Int16 nRet = 0;
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;