diff options
author | Oliver Bolte <obo@openoffice.org> | 2008-10-10 13:02:43 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2008-10-10 13:02:43 +0000 |
commit | f88f6451fb99709768369d774f6eff35b3715902 (patch) | |
tree | d4b6748e0d5866d29d63f605e41cc251547e0305 /xmloff/source/text/txtflde.cxx | |
parent | 5a0180b1ff066350c5b81689e8780e84d53d0dce (diff) |
CWS-TOOLING: integrate CWS cmcfixes49
Diffstat (limited to 'xmloff/source/text/txtflde.cxx')
-rw-r--r-- | xmloff/source/text/txtflde.cxx | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/xmloff/source/text/txtflde.cxx b/xmloff/source/text/txtflde.cxx index 3031b05980..56de401f0b 100644 --- a/xmloff/source/text/txtflde.cxx +++ b/xmloff/source/text/txtflde.cxx @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: txtflde.cxx,v $ - * $Revision: 1.84 $ + * $Revision: 1.84.102.1 $ * * This file is part of OpenOffice.org. * @@ -235,21 +235,21 @@ SvXMLEnumStringMapEntry __READONLY_DATA aFieldServiceNameMapping[] = // property accessor helper functions -inline sal_Bool const GetBoolProperty(const OUString&, +inline sal_Bool GetBoolProperty(const OUString&, const Reference<XPropertySet> &); -inline sal_Bool const GetOptionalBoolProperty(const OUString&, +inline sal_Bool GetOptionalBoolProperty(const OUString&, const Reference<XPropertySet> &, const Reference<XPropertySetInfo> &, sal_Bool bDefault); -inline double const GetDoubleProperty(const OUString&, +inline double GetDoubleProperty(const OUString&, const Reference<XPropertySet> &); inline OUString const GetStringProperty(const OUString&, const Reference<XPropertySet> &); -inline sal_Int32 const GetIntProperty(const OUString&, +inline sal_Int32 GetIntProperty(const OUString&, const Reference<XPropertySet> &); -inline sal_Int16 const GetInt16Property(const OUString&, +inline sal_Int16 GetInt16Property(const OUString&, const Reference<XPropertySet> &); -inline sal_Int8 const GetInt8Property(const OUString&, +inline sal_Int8 GetInt8Property(const OUString&, const Reference<XPropertySet> &); inline DateTime const GetDateTimeProperty( const OUString& sPropName, const Reference<XPropertySet> & xPropSet); @@ -3430,7 +3430,7 @@ OUString XMLTextFieldExport::MakeSequenceRefName( // -inline sal_Bool const GetBoolProperty( +inline sal_Bool GetBoolProperty( const OUString& sPropName, const Reference<XPropertySet> & xPropSet) { @@ -3439,7 +3439,7 @@ inline sal_Bool const GetBoolProperty( return bBool; } -inline sal_Bool const GetOptionalBoolProperty( +inline sal_Bool GetOptionalBoolProperty( const OUString& sPropName, const Reference<XPropertySet> & xPropSet, const Reference<XPropertySetInfo> & xPropSetInfo, @@ -3449,7 +3449,7 @@ inline sal_Bool const GetOptionalBoolProperty( ? GetBoolProperty( sPropName, xPropSet ) : bDefault; } -inline double const GetDoubleProperty( +inline double GetDoubleProperty( const OUString& sPropName, const Reference<XPropertySet> & xPropSet) { @@ -3469,7 +3469,7 @@ inline OUString const GetStringProperty( return sString; } -inline sal_Int32 const GetIntProperty( +inline sal_Int32 GetIntProperty( const OUString& sPropName, const Reference<XPropertySet> & xPropSet) { @@ -3479,7 +3479,7 @@ inline sal_Int32 const GetIntProperty( return nInt; } -inline sal_Int16 const GetInt16Property( +inline sal_Int16 GetInt16Property( const OUString& sPropName, const Reference<XPropertySet> & xPropSet) { @@ -3489,7 +3489,7 @@ inline sal_Int16 const GetInt16Property( return nInt; } -inline sal_Int8 const GetInt8Property( +inline sal_Int8 GetInt8Property( const OUString& sPropName, const Reference<XPropertySet> & xPropSet) { |