summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThorsten Behrens <tbehrens@novell.com>2011-07-20 23:49:47 +0200
committerPetr Mladek <pmladek@suse.cz>2011-07-25 18:45:36 +0200
commit7be4f529477a9f77550f29f7ba08d043cfbcf806 (patch)
treeaadb262c36fe2d2ce8d1c90905e8d8316f789848
parent38d688a8766d6c8cef09371569107fc626a3bd71 (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>
-rw-r--r--sfx2/source/config/evntconf.cxx2
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;