Kaydet (Commit) 82dbf859 authored tarafından Michael Stahl's avatar Michael Stahl

svl: document SfxItemPropertyMapEntry

Change-Id: I7caa540d069addb610310830c26ecd647afc6538
üst 169cd9f6
...@@ -27,12 +27,16 @@ ...@@ -27,12 +27,16 @@
#include <svl/svldllapi.h> #include <svl/svldllapi.h>
#include <vector> #include <vector>
/// map a property between beans::XPropertySet and SfxPoolItem
struct SfxItemPropertyMapEntry struct SfxItemPropertyMapEntry
{ {
OUString aName; OUString aName; ///< name of property
sal_uInt16 nWID; sal_uInt16 nWID; ///< WhichId of SfxPoolItem
com::sun::star::uno::Type aType; com::sun::star::uno::Type aType; ///< UNO type of property
/// flag bitmap, @see com::sun::star::beans::PropertyAttribute
long nFlags; long nFlags;
/// "member ID" to tell QueryValue/PutValue which property it is
/// (when multiple properties map to the same nWID)
sal_uInt8 nMemberId; sal_uInt8 nMemberId;
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment