summaryrefslogtreecommitdiff
path: root/sfx2/source
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
commit0dcefc9f4d52d72c3a9909e699cd081bd13b446e (patch)
treeabd3548f01e0e0cd8ad006cc226b7dd522da2f95 /sfx2/source
parent8f6fa0b468d1873801fc1365263b922ee53e3a49 (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/source')
-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 5adbc48dcc..10bc5a4671 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;