[Libreoffice-commits] .: Branch 'libreoffice-3-4' - sfx2/source

David Tardon dtardon at kemper.freedesktop.org
Wed Jul 20 22:55:23 PDT 2011


 sfx2/source/config/evntconf.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit eecd2e5aef2b1fd9db05d49911b3d9e0c35efed0
Author: Thorsten Behrens <tbehrens at novell.com>
Date:   Wed Jul 20 23:49:47 2011 +0200

    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 at redhat.com>

diff --git a/sfx2/source/config/evntconf.cxx b/sfx2/source/config/evntconf.cxx
index 5adbc48..10bc5a4 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;
 


More information about the Libreoffice-commits mailing list