summaryrefslogtreecommitdiff
path: root/forms
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 12:03:47 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 12:03:47 +0000
commitecd1aaca57470f01350778c785b2ed0b040345cb (patch)
treef80690410be7910c314718f3cf2981ee79eca54a /forms
parent8203934858936d2411da96c1e19e67e1609cbc0f (diff)
INTEGRATION: CWS warnings01 (1.4.68); FILE MERGED
2006/03/15 07:55:45 fs 1.4.68.1: #i57457# warning-free code (unxsols4)
Diffstat (limited to 'forms')
-rw-r--r--forms/source/xforms/datatypes.hxx15
1 files changed, 12 insertions, 3 deletions
diff --git a/forms/source/xforms/datatypes.hxx b/forms/source/xforms/datatypes.hxx
index e988d5f9c23d..625154fb2ca0 100644
--- a/forms/source/xforms/datatypes.hxx
+++ b/forms/source/xforms/datatypes.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: datatypes.hxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: rt $ $Date: 2005-09-08 23:16:42 $
+ * last change: $Author: hr $ $Date: 2006-06-19 13:03:47 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -380,6 +380,9 @@ namespace xforms
// OValueLimitedType overridables
virtual ::rtl::OUString typedValueAsHumanReadableString( const ::com::sun::star::uno::Any& _rValue ) const;
virtual void normalizeValue( const ::com::sun::star::uno::Any& _rValue, double& _rDoubleValue ) const;
+
+ private:
+ using ODecimalType_Base::initializeTypedClone;
};
//====================================================================
@@ -400,9 +403,12 @@ namespace xforms
virtual sal_uInt16 _validate( const ::rtl::OUString& value ); \
virtual bool _getValue( const ::rtl::OUString& value, double& fValue ); \
\
- /* OValueLimitedType overridables */ \
+ /* OValueLimitedType overridables */ \
virtual ::rtl::OUString typedValueAsHumanReadableString( const ::com::sun::star::uno::Any& _rValue ) const; \
virtual void normalizeValue( const ::com::sun::star::uno::Any& _rValue, double& _rDoubleValue ) const; \
+ \
+ private: \
+ using classname##_Base::initializeTypedClone; \
};
//====================================================================
@@ -439,6 +445,9 @@ namespace xforms
// OValueLimitedType overridables
virtual ::rtl::OUString typedValueAsHumanReadableString( const ::com::sun::star::uno::Any& _rValue ) const;
virtual void normalizeValue( const ::com::sun::star::uno::Any& _rValue, double& _rDoubleValue ) const;
+
+ private:
+ using OShortIntegerType_Base::initializeTypedClone;
};
//........................................................................