[Libreoffice-commits] core.git: Branch 'libreoffice-6-0-7' - sw/source

Libreoffice Gerrit user logerrit at kemper.freedesktop.org
Thu Oct 18 14:20:32 UTC 2018


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

New commits:
commit cb2f4381cd3b48abf7872c0f1fd26a1af8ee814d
Author:     Michael Stahl <Michael.Stahl at cib.de>
AuthorDate: Thu Oct 11 10:57:05 2018 +0200
Commit:     Noel Grandin <noel.grandin at collabora.co.uk>
CommitDate: Thu Oct 18 16:19:20 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>
    (cherry picked from commit bf0276f0b53c01ac434fef88e97f6b0dd4c41787)
    Reviewed-on: https://gerrit.libreoffice.org/61674
    Reviewed-by: Thorsten Behrens <Thorsten.Behrens at CIB.de>
    Reviewed-by: Miklos Vajna <vmiklos at collabora.co.uk>
    (cherry picked from commit 2c93c692bcea531b1a02b3d200a44f3c4584455a)
    Reviewed-on: https://gerrit.libreoffice.org/61831
    Reviewed-by: Christian Lohmaier <lohmaier+LibreOffice at googlemail.com>
    Reviewed-by: Noel Grandin <noel.grandin at collabora.co.uk>
    Tested-by: Noel Grandin <noel.grandin at collabora.co.uk>

diff --git a/sw/source/uibase/docvw/edtwin2.cxx b/sw/source/uibase/docvw/edtwin2.cxx
index e279bc2d2d98..3ee49222b88f 100644
--- a/sw/source/uibase/docvw/edtwin2.cxx
+++ b/sw/source/uibase/docvw/edtwin2.cxx
@@ -170,7 +170,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