diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-10-10 15:02:11 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-10-10 15:02:11 +0200 |
commit | 61b6ab6424cd54dc5297013931e7d06568bcd782 (patch) | |
tree | 874fab08b3dde07204a45a6ac4c8adc73b9c4770 /include | |
parent | c1a7e72110e48fa5d7ca38af2d36505b647a11e4 (diff) |
Avoid incomplete type in fn sig to keep ubsan's RTTI-based checks happy
Change-Id: Id535824a9429576a469cf88d9bdbb6b53c5e314b
Diffstat (limited to 'include')
-rw-r--r-- | include/sfx2/msg.hxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/sfx2/msg.hxx b/include/sfx2/msg.hxx index 46963b2ff43d..fe9248eeab4f 100644 --- a/include/sfx2/msg.hxx +++ b/include/sfx2/msg.hxx @@ -24,7 +24,7 @@ #include <rtl/string.hxx> #include <rtl/ustring.hxx> #include <sfx2/dllapi.h> - +#include <svl/itemset.hxx> #define SFX_SLOT_CACHABLE 0x0001L // exclusiv to VOLATILE, default @@ -76,7 +76,6 @@ class SfxRequest; -class SfxItemSet; #define SFX_EXEC_STUB( aShellClass, aExecMethod) \ void SfxStub##aShellClass##aExecMethod( \ |