summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThorsten Behrens <tbehrens@novell.com>2011-07-20 23:49:47 +0200
committerDavid Tardon <dtardon@redhat.com>2011-07-21 07:54:24 +0200
commiteecd2e5aef2b1fd9db05d49911b3d9e0c35efed0 (patch)
treeabd3548f01e0e0cd8ad006cc226b7dd522da2f95
parentfbe9310366d44ec3365a9c41589a2e41aa3ebe74 (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>
-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;