summaryrefslogtreecommitdiff
path: root/xmloff/source
diff options
context:
space:
mode:
authorJoachim Lingner <jl@openoffice.org>2001-03-22 11:21:40 +0000
committerJoachim Lingner <jl@openoffice.org>2001-03-22 11:21:40 +0000
commitd8a32e1e42b76b082b542e89bfba0e42270bbff8 (patch)
tree3f05670f0223232250a3d633e86f7237f1b319f5 /xmloff/source
parente44d303ceb060d7c9c07c8abe7013b040c7579c7 (diff)
replaced Double by double
Diffstat (limited to 'xmloff/source')
-rw-r--r--xmloff/source/text/txtflde.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/xmloff/source/text/txtflde.cxx b/xmloff/source/text/txtflde.cxx
index 15949f169b53..6965cdd94c34 100644
--- a/xmloff/source/text/txtflde.cxx
+++ b/xmloff/source/text/txtflde.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: txtflde.cxx,v $
*
- * $Revision: 1.24 $
+ * $Revision: 1.25 $
*
- * last change: $Author: mib $ $Date: 2001-03-21 10:01:02 $
+ * last change: $Author: jl $ $Date: 2001-03-22 12:21:40 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -365,7 +365,7 @@ SvXMLEnumMapEntry __READONLY_DATA aFieldServiceNameMapping[] =
// property accessor helper functions
inline sal_Bool const GetBoolProperty(const OUString&,
const Reference<XPropertySet> &);
-inline Double const GetDoubleProperty(const OUString&,
+inline double const GetDoubleProperty(const OUString&,
const Reference<XPropertySet> &);
inline OUString const GetStringProperty(const OUString&,
const Reference<XPropertySet> &);
@@ -3151,12 +3151,12 @@ inline sal_Bool const GetBoolProperty(
return bBool;
}
-inline Double const GetDoubleProperty(
+inline double const GetDoubleProperty(
const OUString& sPropName,
const Reference<XPropertySet> & xPropSet)
{
Any aAny = xPropSet->getPropertyValue(sPropName);
- Double fDouble = 0.0;
+ double fDouble = 0.0;
aAny >>= fDouble;
return fDouble;
}