diff options
author | Noel Grandin <noel@peralex.com> | 2016-02-03 16:10:14 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-02-04 11:38:21 +0000 |
commit | 16431492441e742fbbbfc73ba0b715a91ec3ee45 (patch) | |
tree | a0e09fc4f99670d021edf5c2fac08a0b25543210 /idl/inc | |
parent | 3ffa98027e6443d3822da8ba6d9602f3e36cef99 (diff) |
remove unused Cachable keyword from SDI files
Change-Id: I60c423b799f34f79f58bc39cf7ea616ec4f5d16a
Reviewed-on: https://gerrit.libreoffice.org/22096
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'idl/inc')
-rw-r--r-- | idl/inc/globals.hxx | 2 | ||||
-rw-r--r-- | idl/inc/slot.hxx | 10 |
2 files changed, 0 insertions, 12 deletions
diff --git a/idl/inc/globals.hxx b/idl/inc/globals.hxx index ab12cb72b904..f3f30cc18d7a 100644 --- a/idl/inc/globals.hxx +++ b/idl/inc/globals.hxx @@ -43,7 +43,6 @@ struct SvGlobalHashNames SvStringHashEntryRef MM_Get; SvStringHashEntryRef MM_Set; SvStringHashEntryRef MM_SlotId; - SvStringHashEntryRef MM_Cachable; SvStringHashEntryRef MM_Volatile; SvStringHashEntryRef MM_Toggle; SvStringHashEntryRef MM_AutoUpdate; @@ -147,7 +146,6 @@ HASH_INLINE(shell) HASH_INLINE(Get) HASH_INLINE(Set) HASH_INLINE(SlotId) -HASH_INLINE(Cachable) HASH_INLINE(Volatile) HASH_INLINE(Toggle) HASH_INLINE(AutoUpdate) diff --git a/idl/inc/slot.hxx b/idl/inc/slot.hxx index 165388bbfc7f..c9c09a27c091 100644 --- a/idl/inc/slot.hxx +++ b/idl/inc/slot.hxx @@ -36,7 +36,6 @@ class SvMetaSlot : public SvMetaAttribute SvBOOL aGet; SvBOOL aSet; - SvBOOL aCachable; // exclusive SvBOOL aVolatile; SvBOOL aToggle; SvBOOL aAutoUpdate; @@ -76,17 +75,9 @@ class SvMetaSlot : public SvMetaAttribute void SetEnumValue(SvMetaEnumValue *p) { pEnumValue = p; } protected: - void SetCachable( bool bSet ) - { - aCachable = bSet; - if( bSet ) - aVolatile = false; - } void SetVolatile( bool bSet ) { aVolatile = bSet; - if( bSet ) - aCachable = false; } void SetToggle( bool bSet ) { @@ -164,7 +155,6 @@ public: const OString& GetDefault() const; const OString& GetDisableFlags() const; bool GetPseudoSlots() const; - bool GetCachable() const; bool GetVolatile() const; bool GetToggle() const; bool GetAutoUpdate() const; |