diff options
author | Thorsten Behrens <tbehrens@novell.com> | 2011-07-20 23:49:47 +0200 |
---|---|---|
committer | Petr Mladek <pmladek@suse.cz> | 2011-07-25 18:45:36 +0200 |
commit | 7be4f529477a9f77550f29f7ba08d043cfbcf806 (patch) | |
tree | aadb262c36fe2d2ce8d1c90905e8d8316f789848 /sfx2 | |
parent | 38d688a8766d6c8cef09371569107fc626a3bd71 (diff) |
Fix wrong RTTI baseclass for SfxViewEventHint
Fixes fdo#38768 and likely a bunch of other nasty side effects.
SfxBaseModel::Notify was simply ignoring all kinds of messages
without this fix.
Signed-off-by: David Tardon <dtardon@redhat.com>
Signed-off-by: Petr Mladek <pmladek@suse.cz>
Signed-off-by: Michael Meeks <michael.meeks@novell.com>
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/config/evntconf.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/config/evntconf.cxx b/sfx2/source/config/evntconf.cxx index eb13788aba94..88e284ea4e27 100644 --- a/sfx2/source/config/evntconf.cxx +++ b/sfx2/source/config/evntconf.cxx @@ -60,7 +60,7 @@ // ----------------------------------------------------------------------- TYPEINIT1(SfxEventHint, SfxHint); TYPEINIT1(SfxEventNamesItem, SfxPoolItem); -TYPEINIT1(SfxViewEventHint, SfxHint); +TYPEINIT1(SfxViewEventHint, SfxEventHint); using namespace com::sun::star; |