[Libreoffice-commits] core.git: Branch 'libreoffice-7-2' - editeng/source sd/qa

Gülşah Köse (via logerrit) logerrit at kemper.freedesktop.org
Mon Jun 21 11:37:17 UTC 2021


 editeng/source/uno/unotext.cxx      |   14 +++++++-------
 sd/qa/unit/data/pptx/tdf142716.pptx |binary
 sd/qa/unit/export-tests.cxx         |   18 ++++++++++++++++++
 3 files changed, 25 insertions(+), 7 deletions(-)

New commits:
commit 1da6972c716256f908ea11549b6566877ce1e580
Author:     Gülşah Köse <gulsah.kose at collabora.com>
AuthorDate: Fri Jun 18 11:23:41 2021 +0300
Commit:     Xisco Fauli <xiscofauli at libreoffice.org>
CommitDate: Mon Jun 21 13:36:46 2021 +0200

    tdf#142716 Update selection after any text is inserted.
    
    When we don't update the selection after insertion of new text
    SvxUnoTextBase::createEnumeration knows old selection and losts last part
    of the text.
    
    Change-Id: I20f6530f34097ff213ff00cff617139887fd287a
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117409
    Tested-by: Jenkins
    Reviewed-by: Gülşah Köse <gulsah.kose at collabora.com>
    (cherry picked from commit e837f50313a703b6b26abb78f224472c1e4734ea)
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117558
    Reviewed-by: Xisco Fauli <xiscofauli at libreoffice.org>

diff --git a/editeng/source/uno/unotext.cxx b/editeng/source/uno/unotext.cxx
index 20d901e0d300..cae30b9eaa99 100644
--- a/editeng/source/uno/unotext.cxx
+++ b/editeng/source/uno/unotext.cxx
@@ -1739,13 +1739,6 @@ void SAL_CALL SvxUnoTextBase::insertString( const uno::Reference< text::XTextRan
     if( !xRange.is() )
         return;
 
-    if (GetEditSource())
-    {
-        ESelection aSelection;
-        ::GetSelection( aSelection, GetEditSource()->GetTextForwarder() );
-        SetSelection( aSelection );
-    }
-
     SvxUnoTextRangeBase* pRange = comphelper::getUnoTunnelImplementation<SvxUnoTextRange>( xRange );
     if(!pRange)
         return;
@@ -1761,6 +1754,13 @@ void SAL_CALL SvxUnoTextBase::insertString( const uno::Reference< text::XTextRan
     pRange->setString( aString );
 
     pRange->CollapseToEnd();
+
+    if (GetEditSource())
+    {
+        ESelection aSelection;
+        ::GetSelection( aSelection, GetEditSource()->GetTextForwarder() );
+        SetSelection( aSelection );
+    }
 }
 
 void SAL_CALL SvxUnoTextBase::insertControlCharacter( const uno::Reference< text::XTextRange >& xRange, sal_Int16 nControlCharacter, sal_Bool bAbsorb )
diff --git a/sd/qa/unit/data/pptx/tdf142716.pptx b/sd/qa/unit/data/pptx/tdf142716.pptx
new file mode 100644
index 000000000000..4ef29e389449
Binary files /dev/null and b/sd/qa/unit/data/pptx/tdf142716.pptx differ
diff --git a/sd/qa/unit/export-tests.cxx b/sd/qa/unit/export-tests.cxx
index 7805b591b6ed..c44564e201de 100644
--- a/sd/qa/unit/export-tests.cxx
+++ b/sd/qa/unit/export-tests.cxx
@@ -66,6 +66,7 @@ public:
     void testImageWithSpecialID();
     void testTdf62176();
     void testTransparentBackground();
+    void testTdf142716();
     void testEmbeddedPdf();
     void testEmbeddedText();
     void testTransparenText();
@@ -110,6 +111,7 @@ public:
     CPPUNIT_TEST(testImageWithSpecialID);
     CPPUNIT_TEST(testTdf62176);
     CPPUNIT_TEST(testTransparentBackground);
+    CPPUNIT_TEST(testTdf142716);
     CPPUNIT_TEST(testEmbeddedPdf);
     CPPUNIT_TEST(testEmbeddedText);
     CPPUNIT_TEST(testTransparenText);
@@ -287,6 +289,22 @@ void SdExportTest::testTransparentBackground()
     xDocShRef->DoClose();
 }
 
+void SdExportTest::testTdf142716()
+{
+    ::sd::DrawDocShellRef xDocShRef = loadURL(m_directories.getURLFromSrc(u"/sd/qa/unit/data/pptx/tdf142716.pptx"), PPTX);
+    xDocShRef = saveAndReload( xDocShRef.get(), PPTX );
+
+    const SdrPage *pPage = GetPage( 1, xDocShRef );
+    const SdrTextObj *pObj = dynamic_cast<SdrTextObj *>( pPage->GetObj( 0 ) );
+
+    OUString sText = pObj->GetOutlinerParaObject()->GetTextObject().GetText(0);
+
+    // Without fix "yyy" part will be lost.
+    CPPUNIT_ASSERT_EQUAL( OUString( "xxx and yyy" ), sText);
+
+    xDocShRef->DoClose();
+}
+
 void SdExportTest::testMediaEmbedding()
 {
     ::sd::DrawDocShellRef xDocShRef = loadURL(m_directories.getURLFromSrc(u"/sd/qa/unit/data/media_embedding.odp"), ODP);


More information about the Libreoffice-commits mailing list