[Libreoffice-commits] core.git: sw/source

Libreoffice Gerrit user logerrit at kemper.freedesktop.org
Thu Oct 11 13:18:27 UTC 2018


 sw/source/uibase/docvw/edtwin2.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit bf0276f0b53c01ac434fef88e97f6b0dd4c41787
Author:     Michael Stahl <Michael.Stahl at cib.de>
AuthorDate: Thu Oct 11 10:57:05 2018 +0200
Commit:     Michael Stahl <Michael.Stahl at cib.de>
CommitDate: Thu Oct 11 15:17:57 2018 +0200

    sw: fix invalid cast in SwEditWin::RequestHelp()
    
    This results in a garbage OUString.
    
    Change-Id: I03b8030a812d7016df5c29f1341749fbdedf1729
    Reviewed-on: https://gerrit.libreoffice.org/61652
    Tested-by: Jenkins
    Reviewed-by: Michael Stahl <Michael.Stahl at cib.de>

diff --git a/sw/source/uibase/docvw/edtwin2.cxx b/sw/source/uibase/docvw/edtwin2.cxx
index fe3f1021b4ef..e2049a33be52 100644
--- a/sw/source/uibase/docvw/edtwin2.cxx
+++ b/sw/source/uibase/docvw/edtwin2.cxx
@@ -169,7 +169,7 @@ void SwEditWin::RequestHelp(const HelpEvent &rEvt)
 
             case IsAttrAtPos::InetAttr:
             {
-                sText = static_cast<const SfxStringItem*>(aContentAtPos.aFnd.pAttr)->GetValue();
+                sText = static_cast<const SwFormatINetFormat*>(aContentAtPos.aFnd.pAttr)->GetValue();
                 sText = URIHelper::removePassword( sText,
                                         INetURLObject::EncodeMechanism::WasEncoded,
                                            INetURLObject::DecodeMechanism::Unambiguous);


More information about the Libreoffice-commits mailing list