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

Oliver Specht oliver.specht at cib.de
Tue Jan 12 22:56:41 PST 2016


 sw/source/core/undo/untbl.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 70d2673ba06878ee84c99d7877e4b71749ac06f0
Author: Oliver Specht <oliver.specht at cib.de>
Date:   Tue Jan 12 13:05:56 2016 +0100

    tdf#96067: fix crash in undo of table row insertion
    
    create SwIterator with SwLayoutFrame instead of SwTabFrame
    the wrong usage worked with tools/rtti because of incomplete
    type information above of SwLayoutFrame
    
    Change-Id: I9967fa1b534fc28dc5e0cd1fa5b64179faa9b94d
    Reviewed-on: https://gerrit.libreoffice.org/21394
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Oliver Specht <oliver.specht at cib.de>

diff --git a/sw/source/core/undo/untbl.cxx b/sw/source/core/undo/untbl.cxx
index d9efba0..d80142b 100644
--- a/sw/source/core/undo/untbl.cxx
+++ b/sw/source/core/undo/untbl.cxx
@@ -1093,7 +1093,7 @@ void _SaveTable::NewFrameFormat( const SwTableLine* pTableLn, const SwTableBox*
     }
 
     // first re-assign Frames
-    SwIterator<SwTabFrame,SwFormat> aIter( *pOldFormat );
+    SwIterator<SwLayoutFrame,SwFormat> aIter( *pOldFormat );
     for( SwFrame* pLast = aIter.First(); pLast; pLast = aIter.Next() )
     {
         if( pTableLn ? static_cast<SwRowFrame*>(pLast)->GetTabLine() == pTableLn


More information about the Libreoffice-commits mailing list