diff options
author | Michael Stahl <mstahl@redhat.com> | 2015-06-09 22:38:39 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2015-06-10 14:38:27 +0200 |
commit | 82dbf859f18eeda9f7051a4e5d1b5613e6b53434 (patch) | |
tree | ac16f58eb94d490bdd42d0d1409d6a6858d35026 /include | |
parent | 169cd9f675b6c868b829caf4bed0d829d9404b41 (diff) |
svl: document SfxItemPropertyMapEntry
Change-Id: I7caa540d069addb610310830c26ecd647afc6538
Diffstat (limited to 'include')
-rw-r--r-- | include/svl/itemprop.hxx | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/include/svl/itemprop.hxx b/include/svl/itemprop.hxx index 6da36a306220..ea5d7e590c91 100644 --- a/include/svl/itemprop.hxx +++ b/include/svl/itemprop.hxx @@ -27,12 +27,16 @@ #include <svl/svldllapi.h> #include <vector> +/// map a property between beans::XPropertySet and SfxPoolItem struct SfxItemPropertyMapEntry { - OUString aName; - sal_uInt16 nWID; - com::sun::star::uno::Type aType; + OUString aName; ///< name of property + sal_uInt16 nWID; ///< WhichId of SfxPoolItem + com::sun::star::uno::Type aType; ///< UNO type of property + /// flag bitmap, @see com::sun::star::beans::PropertyAttribute long nFlags; + /// "member ID" to tell QueryValue/PutValue which property it is + /// (when multiple properties map to the same nWID) sal_uInt8 nMemberId; }; |