summaryrefslogtreecommitdiffstats
path: root/forms/source/inc/property.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'forms/source/inc/property.hxx')
-rw-r--r--forms/source/inc/property.hxx13
1 files changed, 0 insertions, 13 deletions
diff --git a/forms/source/inc/property.hxx b/forms/source/inc/property.hxx
index 086428391c5a..de1a09861b34 100644
--- a/forms/source/inc/property.hxx
+++ b/forms/source/inc/property.hxx
@@ -345,10 +345,6 @@ public:
*pProperties++ = css::beans::Property(PROPERTY_##varname, PROPERTY_ID_##varname, cppu::UnoType<bool>::get(),
-#define DECL_IFACE_PROP_IMPL(varname, type) \
- *pProperties++ = css::beans::Property(PROPERTY_##varname, PROPERTY_ID_##varname, cppu::UnoType<type>::get(),
-
-
#define BEGIN_DESCRIBE_PROPERTIES( count, baseclass ) \
baseclass::describeFixedProperties( _rProps ); \
sal_Int32 nOldCount = _rProps.getLength(); \
@@ -361,18 +357,9 @@ public:
css::beans::Property* pProperties = _rProps.getArray(); \
-#define DECL_PROP0(varname, type) \
- DECL_PROP_IMPL(varname, type) 0)
-
-
#define DECL_PROP1(varname, type, attrib1) \
DECL_PROP_IMPL(varname, type) css::beans::PropertyAttribute::attrib1)
-
-#define DECL_PROP2(varname, type, attrib1, attrib2) \
- DECL_PROP_IMPL(varname, type) css::beans::PropertyAttribute::attrib1 | css::beans::PropertyAttribute::attrib2)
-
-
#define END_DESCRIBE_PROPERTIES() \
DBG_ASSERT( pProperties == _rProps.getArray() + _rProps.getLength(), "<...>::describeFixedProperties/getInfoHelper: forgot to adjust the count ?"); \