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

Noel (via logerrit) logerrit at kemper.freedesktop.org
Tue Mar 9 16:47:15 UTC 2021


 vcl/source/edit/textundo.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 3dfe1df0f1084b06c7d4c95df387253b2e058cd6
Author:     Noel <noel.grandin at collabora.co.uk>
AuthorDate: Tue Mar 9 12:08:43 2021 +0200
Commit:     Noel Grandin <noel.grandin at collabora.co.uk>
CommitDate: Tue Mar 9 17:46:29 2021 +0100

    this should be dynamic_cast
    
    accidentally broken with
        commit e4e80ed313882f9ea1b309054e5aa3e839586516
        Date:   Sat Mar 6 20:40:58 2021 +0200
        loplugin:staticdynamic now with extra salt
    
    Change-Id: If5946d7f65eb51c9785e7ad2e6def0ebd56fd9cc
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/112198
    Tested-by: Jenkins
    Reviewed-by: Noel Grandin <noel.grandin at collabora.co.uk>

diff --git a/vcl/source/edit/textundo.cxx b/vcl/source/edit/textundo.cxx
index e7c2fe1c76aa..89dd0c50f316 100644
--- a/vcl/source/edit/textundo.cxx
+++ b/vcl/source/edit/textundo.cxx
@@ -273,7 +273,7 @@ void TextUndoInsertChars::Redo()
 
 bool TextUndoInsertChars::Merge( SfxUndoAction* pNextAction )
 {
-    TextUndoInsertChars* pNext = static_cast<TextUndoInsertChars*>(pNextAction);
+    TextUndoInsertChars* pNext = dynamic_cast<TextUndoInsertChars*>(pNextAction);
     if ( !pNext )
         return false;
 


More information about the Libreoffice-commits mailing list