summaryrefslogtreecommitdiff
path: root/toolkit
diff options
context:
space:
mode:
authorThomas Benisch <tbe@openoffice.org>2001-03-01 13:27:14 +0000
committerThomas Benisch <tbe@openoffice.org>2001-03-01 13:27:14 +0000
commit62ac7487861160ed387e0b2176b7065711e9f5a6 (patch)
tree87bcffffd2ec3fb672bb094ce711db8aa023d778 /toolkit
parent7aee681b5590a14d16985864a84b6b214b000e64 (diff)
removed ClassId from geometry control model
Diffstat (limited to 'toolkit')
-rw-r--r--toolkit/inc/toolkit/controls/geometrycontrolmodel.hxx8
-rw-r--r--toolkit/source/controls/geometrycontrolmodel.cxx11
2 files changed, 10 insertions, 9 deletions
diff --git a/toolkit/inc/toolkit/controls/geometrycontrolmodel.hxx b/toolkit/inc/toolkit/controls/geometrycontrolmodel.hxx
index 7b8aa91fc549..f3dc622ef522 100644
--- a/toolkit/inc/toolkit/controls/geometrycontrolmodel.hxx
+++ b/toolkit/inc/toolkit/controls/geometrycontrolmodel.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: geometrycontrolmodel.hxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: tbe $ $Date: 2001-02-28 10:51:22 $
+ * last change: $Author: tbe $ $Date: 2001-03-01 14:27:14 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -119,7 +119,6 @@ FORWARD_DECLARE_INTERFACE( script, XNameContainer )
sal_Int32 m_nHeight;
::rtl::OUString m_nName;
sal_Int16 m_nTabIndex;
- sal_Int16 m_nClassId;
// </properties>
public:
@@ -209,6 +208,9 @@ FORWARD_DECLARE_INTERFACE( script, XNameContainer )
/*************************************************************************
* history:
* $Log: not supported by cvs2svn $
+ * Revision 1.3 2001/02/28 10:51:22 tbe
+ * added additional properties to geometry model
+ *
* Revision 1.2 2001/02/21 17:21:57 ab
* Support for XScriptEventsSupplier added
*
diff --git a/toolkit/source/controls/geometrycontrolmodel.cxx b/toolkit/source/controls/geometrycontrolmodel.cxx
index 90687cadcd83..6ca44f2b3271 100644
--- a/toolkit/source/controls/geometrycontrolmodel.cxx
+++ b/toolkit/source/controls/geometrycontrolmodel.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: geometrycontrolmodel.cxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: tbe $ $Date: 2001-02-28 10:49:53 $
+ * last change: $Author: tbe $ $Date: 2001-03-01 14:26:33 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -84,7 +84,6 @@
#define GCM_PROPERTY_ID_HEIGHT 4
#define GCM_PROPERTY_ID_NAME 5
#define GCM_PROPERTY_ID_TABINDEX 6
-#define GCM_PROPERTY_ID_CLASSID 7
#define GCM_PROPERTY_POS_X ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("PositionX"))
#define GCM_PROPERTY_POS_Y ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("PositionY"))
@@ -92,7 +91,6 @@
#define GCM_PROPERTY_HEIGHT ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("Height"))
#define GCM_PROPERTY_NAME ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("Name"))
#define GCM_PROPERTY_TABINDEX ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("TabIndex"))
-#define GCM_PROPERTY_CLASSID ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("ClassId"))
#define DEFAULT_ATTRIBS() PropertyAttribute::BOUND | PropertyAttribute::TRANSIENT
@@ -120,7 +118,6 @@
,m_nHeight(0)
,m_nName(::rtl::OUString())
,m_nTabIndex(0)
- ,m_nClassId(0)
{
OSL_ENSURE(NULL != _pAggregateInstance, "OGeometryControlModel_Base::OGeometryControlModel_Base: invalid aggregate!");
@@ -140,7 +137,6 @@
registerProperty(GCM_PROPERTY_HEIGHT, GCM_PROPERTY_ID_HEIGHT, DEFAULT_ATTRIBS(), &m_nHeight, ::getCppuType(&m_nHeight));
registerProperty(GCM_PROPERTY_NAME, GCM_PROPERTY_ID_NAME, DEFAULT_ATTRIBS(), &m_nName, ::getCppuType(&m_nName));
registerProperty(GCM_PROPERTY_TABINDEX, GCM_PROPERTY_ID_TABINDEX, DEFAULT_ATTRIBS(), &m_nTabIndex, ::getCppuType(&m_nTabIndex));
- registerProperty(GCM_PROPERTY_CLASSID, GCM_PROPERTY_ID_CLASSID, DEFAULT_ATTRIBS(), &m_nClassId, ::getCppuType(&m_nClassId));
}
//--------------------------------------------------------------------
@@ -240,6 +236,9 @@
/*************************************************************************
* history:
* $Log: not supported by cvs2svn $
+ * Revision 1.3 2001/02/28 10:49:53 tbe
+ * added additional properties to geometry model
+ *
* Revision 1.2 2001/02/21 17:31:20 ab
* Support for XScriptEventsSupplier added
*