diff options
author | Pranav Kant <pranavk@collabora.co.uk> | 2017-02-15 14:27:08 +0530 |
---|---|---|
committer | Pranav Kant <pranavk@collabora.co.uk> | 2017-02-16 10:09:24 +0530 |
commit | ce96c5957c38384f8911d6307605c502eca0c644 (patch) | |
tree | e789e5c8efbc089a6f32c6839f7924008629727b /svx | |
parent | a29b0d68011f9e2be8eee466f3f9ccad283f274c (diff) |
SvxPostItIdItem is now string type
Change-Id: Id44bf5dd623749b6e9a46f121f035aa5ce617557
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/items/postattr.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/items/postattr.cxx b/svx/source/items/postattr.cxx index 1426a1be1b05..52d98a312d74 100644 --- a/svx/source/items/postattr.cxx +++ b/svx/source/items/postattr.cxx @@ -151,8 +151,8 @@ SvxPostItIdItem::SvxPostItIdItem( sal_uInt16 _nWhich ) SetWhich( _nWhich ); } -SvxPostItIdItem::SvxPostItIdItem( sal_uInt32 rId, sal_uInt16 _nWhich ) : - SfxUInt32Item( _nWhich, rId ) +SvxPostItIdItem::SvxPostItIdItem( const OUString& rId, sal_uInt16 _nWhich ) : + SfxStringItem( _nWhich, rId ) { } |