diff options
author | Noel Grandin <noel@peralex.com> | 2014-07-23 15:09:14 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-07-24 08:13:04 +0200 |
commit | 2a19718575e4b9c5757da55ab64dd17ef7d3c9c4 (patch) | |
tree | 39a7447c3260d5f6456cf17666c598f680e13be4 /include | |
parent | 4bb37f99811875179c2020e832542d3751a93312 (diff) |
move SFX_ITEMS_DIRECT etc. definitions inside the module
These are internal constants, they don't need to be visible to the rest
of LO
Change-Id: I313def85b8c404948ec9ecb3996fed03b32ff9bf
Diffstat (limited to 'include')
-rw-r--r-- | include/svl/itempool.hxx | 1 | ||||
-rw-r--r-- | include/svl/poolitem.hxx | 4 |
2 files changed, 1 insertions, 4 deletions
diff --git a/include/svl/itempool.hxx b/include/svl/itempool.hxx index 09c1305dd142..5b6a14dbe139 100644 --- a/include/svl/itempool.hxx +++ b/include/svl/itempool.hxx @@ -163,6 +163,7 @@ public: sal_uInt32 GetSurrogate(const SfxPoolItem *) const; const SfxPoolItem * GetItem2(sal_uInt16 nWhich, sal_uInt32 nSurrogate) const; + const SfxPoolItem * GetItem2Default(sal_uInt16 nWhich) const; sal_uInt32 GetItemCount2(sal_uInt16 nWhich) const; const SfxPoolItem* LoadSurrogate(SvStream& rStream, sal_uInt16 &rWhich, sal_uInt16 nSlotId, diff --git a/include/svl/poolitem.hxx b/include/svl/poolitem.hxx index 718a78bf05d0..f19003e81bc9 100644 --- a/include/svl/poolitem.hxx +++ b/include/svl/poolitem.hxx @@ -37,10 +37,6 @@ class IntlWrapper; namespace com { namespace sun { namespace star { namespace uno { class Any; } } } } -static const sal_uInt32 SFX_ITEMS_DIRECT = 0xffffffff; -static const sal_uInt32 SFX_ITEMS_NULL = 0xfffffff0; // instead StoreSurrogate -static const sal_uInt32 SFX_ITEMS_DEFAULT = 0xfffffffe; - enum SfxItemKind { SFX_ITEMS_NONE, SFX_ITEMS_DELETEONIDLE, |