diff options
Diffstat (limited to 'sw/inc/unoprnms.hxx')
-rw-r--r-- | sw/inc/unoprnms.hxx | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/sw/inc/unoprnms.hxx b/sw/inc/unoprnms.hxx index 374753ba22..51034beb2d 100644 --- a/sw/inc/unoprnms.hxx +++ b/sw/inc/unoprnms.hxx @@ -806,14 +806,15 @@ enum SwPropNameIds // <-- /* 0738 */ UNO_NAME_META, // #i91565# /* 0739 */ UNO_NAME_NESTED_TEXT_CONTENT, // #i109601# -/* 0740 */ SW_PROPNAME_END +/* 0740 */ UNO_NAME_EMBEDDED_OBJECT, +/* 0741 */ SW_PROPNAME_END }; struct SwPropNameLen { const char* pName; - USHORT nNameLen; + sal_uInt16 nNameLen; operator const char*() const { return pName; } }; @@ -825,8 +826,8 @@ extern const SwPropNameTab aPropNameTab; // !!! function must not(!) be inline because it is called via the below !!! // !!! listed macros from the swui DLL and that can not access the !!! // !!! array aPropNameTab which is located in a different DLL. !!! -SW_DLLPUBLIC const SwPropNameLen& GetPropName( USHORT nId ); -SW_DLLPUBLIC const SwPropNameLen& SwGetPropName( USHORT nId ); +SW_DLLPUBLIC const SwPropNameLen& GetPropName( sal_uInt16 nId ); +SW_DLLPUBLIC const SwPropNameLen& SwGetPropName( sal_uInt16 nId ); #define SW_PROP_NAME(nId) \ GetPropName( nId ).pName, GetPropName( nId ).nNameLen |