summaryrefslogtreecommitdiff
path: root/idl/inc
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-02-08 13:35:00 +0200
committerNoel Grandin <noel@peralex.com>2016-02-08 14:00:39 +0200
commit898061f9265da374b57d0c799618b12cbe832510 (patch)
tree71f53062ba74bbba4ee4888f9df3dade9f8b0fc0 /idl/inc
parentafa1779d27da31ef0d5084306db8dc955689a78f (diff)
move isMethod/isVariable down from SvMetaAttribute to SvMetaSlot
Change-Id: Ic13c61d6bd75d12e9dc5c75eaa75573dcb3b3b0b
Diffstat (limited to 'idl/inc')
-rw-r--r--idl/inc/slot.hxx6
-rw-r--r--idl/inc/types.hxx4
2 files changed, 3 insertions, 7 deletions
diff --git a/idl/inc/slot.hxx b/idl/inc/slot.hxx
index 9e5296e1b826..8c838ad02633 100644
--- a/idl/inc/slot.hxx
+++ b/idl/inc/slot.hxx
@@ -66,6 +66,9 @@ class SvMetaSlot : public SvMetaAttribute
void SetEnumValue(SvMetaEnumValue *p) { pEnumValue = p; }
OString GetMangleName() const;
+ bool IsVariable() const;
+ bool IsMethod() const;
+
protected:
void SetToggle( bool bSet ) { aToggle = bSet; }
void SetAutoUpdate( bool bSet ) { aAutoUpdate = bSet; }
@@ -97,9 +100,6 @@ public:
SvMetaSlot();
SvMetaSlot( SvMetaType * pType );
- virtual bool IsVariable() const override;
- virtual bool IsMethod() const override;
-
SvMetaAttribute * GetMethod() const;
SvMetaType * GetSlotType() const;
const OString& GetGroupId() const;
diff --git a/idl/inc/types.hxx b/idl/inc/types.hxx
index 16ab9dbd43ea..09c8a7cd4135 100644
--- a/idl/inc/types.hxx
+++ b/idl/inc/types.hxx
@@ -46,10 +46,6 @@ public:
const SvIdentifier& GetSlotId() const;
SvMetaType * GetType() const;
- virtual bool IsMethod() const;
- virtual bool IsVariable() const;
-
-
virtual bool Test( SvIdlDataBase &, SvTokenStream & rInStm ) override;
virtual bool ReadSvIdl( SvIdlDataBase &, SvTokenStream & rInStm ) override;
sal_uLong MakeSfx( OStringBuffer& rAtrrArray );