[Libreoffice-commits] .: sfx2/source

Libreoffice Gerrit user logerrit at kemper.freedesktop.org
Tue Sep 11 04:01:17 PDT 2012


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

New commits:
commit 6c29057f55dc1afde8911ac527814ca09ead2c2f
Author: Noel Power <noel.power at suse.com>
Date:   Tue Sep 11 11:59:45 2012 +0100

    missing part of fix for fdo#54721
    
    commit id cea414bfe8fe356793778bdf09f5ca3b3a42daa0 for
    "fix vba not tracking currently selected doc correctly" was missing necessary
    change in sfx2
    
    Change-Id: I1697c005374b3d26dc63c78702a46c6d9879adaa

diff --git a/sfx2/source/doc/objxtor.cxx b/sfx2/source/doc/objxtor.cxx
index a9bb168..deee41b 100644
--- a/sfx2/source/doc/objxtor.cxx
+++ b/sfx2/source/doc/objxtor.cxx
@@ -135,7 +135,7 @@ static VBAConstantNameMap s_aRegisteredVBAConstants;
     if( xProps.is() ) try
     {
         ::rtl::OUString aConstName;
-        xProps->getPropertyValue( ::rtl::OUString( "VBAGlobalConstantName"  ) ) >>= aConstName;
+        xProps->getPropertyValue( ::rtl::OUString( "ThisVBADocObj"  ) ) >>= aConstName;
         return ::rtl::OUStringToOString( aConstName, RTL_TEXTENCODING_ASCII_US );
     }
     catch (const uno::Exception&) // not supported


More information about the Libreoffice-commits mailing list