diff options
author | Michael Brauer <mib@openoffice.org> | 2001-01-17 09:50:53 +0000 |
---|---|---|
committer | Michael Brauer <mib@openoffice.org> | 2001-01-17 09:50:53 +0000 |
commit | 75994772cd4e75d4da2d2b342304f85f97dffc0a (patch) | |
tree | 6254cc36a2449f2689d709662096272b49bec02c | |
parent | 5c6afc77acbf29ed3dd5e638c42c781232e28bea (diff) |
Remove SizeType property for graphics
-rw-r--r-- | sw/source/core/unocore/unomap.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/core/unocore/unomap.cxx b/sw/source/core/unocore/unomap.cxx index 92f1aa23bce2..7b4dbc0f8ca9 100644 --- a/sw/source/core/unocore/unomap.cxx +++ b/sw/source/core/unocore/unomap.cxx @@ -2,9 +2,9 @@ * * $RCSfile: unomap.cxx,v $ * - * $Revision: 1.41 $ + * $Revision: 1.42 $ * - * last change: $Author: mib $ $Date: 2001-01-15 11:26:06 $ + * last change: $Author: mib $ $Date: 2001-01-17 10:50:53 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -637,7 +637,6 @@ void SwUnoPropertyMapProvider::Sort(sal_uInt16 nId) { SW_PROP_NAME(UNO_NAME_RIGHT_MARGIN), RES_LR_SPACE, &::getCppuType((const sal_Int32*)0), PROPERTY_NONE, MID_R_MARGIN|CONVERT_TWIPS}, \ { SW_PROP_NAME(UNO_NAME_WIDTH), RES_FRM_SIZE, &::getCppuType((const sal_Int32*)0) , PROPERTY_NONE, MID_FRMSIZE_WIDTH|CONVERT_TWIPS},\ { SW_PROP_NAME(UNO_NAME_HEIGHT), RES_FRM_SIZE, &::getCppuType((const sal_Int32*)0) , PROPERTY_NONE, MID_FRMSIZE_HEIGHT|CONVERT_TWIPS},\ - { SW_PROP_NAME(UNO_NAME_SIZE_TYPE), RES_FRM_SIZE, &::getCppuType((const sal_Int16*)0) , PROPERTY_NONE, MID_FRMSIZE_SIZE_TYPE }, \ { SW_PROP_NAME(UNO_NAME_HORI_ORIENT ), RES_HORI_ORIENT, &::getCppuType((const sal_Int16*)0), PROPERTY_NONE ,MID_HORIORIENT_ORIENT }, \ { SW_PROP_NAME(UNO_NAME_HORI_ORIENT_POSITION), RES_HORI_ORIENT, &::getCppuType((const sal_Int32*)0), PROPERTY_NONE ,MID_HORIORIENT_POSITION|CONVERT_TWIPS }, \ { SW_PROP_NAME(UNO_NAME_HORI_ORIENT_RELATION), RES_HORI_ORIENT, &::getCppuType((const sal_Int16*)0), PROPERTY_NONE ,MID_HORIORIENT_RELATION }, \ @@ -1289,6 +1288,7 @@ const SfxItemPropertyMap* SwUnoPropertyMapProvider::GetPropertyMap(sal_uInt16 { MAP_CHAR_LEN("FrameIsAutomaticHeight"), RES_FRM_SIZE, &::getBooleanCppuType(), PROPERTY_NONE, MID_FRMSIZE_IS_AUTO_HEIGHT }, { MAP_CHAR_LEN("FrameWidthAbsolute"), RES_FRM_SIZE, &::getCppuType((const sal_Int32*)0), PROPERTY_NONE, MID_FRMSIZE_WIDTH|CONVERT_TWIPS }, { MAP_CHAR_LEN("FrameWidthPercent"), RES_FRM_SIZE, &::getCppuType((const sal_Int8*)0), PROPERTY_NONE, MID_FRMSIZE_REL_WIDTH }, + { SW_PROP_NAME(UNO_NAME_SIZE_TYPE), RES_FRM_SIZE, &::getCppuType((const sal_Int16*)0) , PROPERTY_NONE, MID_FRMSIZE_SIZE_TYPE }, {0,0,0,0} }; aMapArr[nPropertyId] = aFramePropertyMap_Impl; |