diff options
Diffstat (limited to 'sd')
-rw-r--r-- | sd/qa/unit/tiledrendering/data/tdf105502.odp | bin | 11376 -> 11629 bytes | |||
-rw-r--r-- | sd/qa/unit/tiledrendering/tiledrendering.cxx | 12 | ||||
-rw-r--r-- | sd/source/ui/func/futext.cxx | 41 |
3 files changed, 12 insertions, 41 deletions
diff --git a/sd/qa/unit/tiledrendering/data/tdf105502.odp b/sd/qa/unit/tiledrendering/data/tdf105502.odp Binary files differindex 6fe818090c8b..2150f1152ba7 100644 --- a/sd/qa/unit/tiledrendering/data/tdf105502.odp +++ b/sd/qa/unit/tiledrendering/data/tdf105502.odp diff --git a/sd/qa/unit/tiledrendering/tiledrendering.cxx b/sd/qa/unit/tiledrendering/tiledrendering.cxx index 1e3d54e7e6d1..6d5c0bc84af2 100644 --- a/sd/qa/unit/tiledrendering/tiledrendering.cxx +++ b/sd/qa/unit/tiledrendering/tiledrendering.cxx @@ -1601,13 +1601,21 @@ void SdTiledRenderingTest::testTdf105502() // Assert that the selected A1 has now a larger font than the unselected // A2. xmlDocPtr pXmlDoc = parseXmlDump(); - sal_Int32 nA1Height = getXPath(pXmlDoc, "//Cell[1]/SdrText/OutlinerParaObject/EditTextObject/ContentInfo/attribs[1]/SvxFontHeightItem", "height").toInt32(); + sal_Int32 nA1Height = getXPath(pXmlDoc, "//Cell[1]/SdrText/OutlinerParaObject/EditTextObject/ContentInfo/SfxItemSet/SvxFontHeightItem[1]", "height").toInt32(); sal_Int32 nA2Height = getXPath(pXmlDoc, "//Cell[3]/SdrText/OutlinerParaObject/EditTextObject/ContentInfo/attribs[1]/SvxFontHeightItem", "height").toInt32(); // This failed when FuText::ChangeFontSize() never did "continue" in the // text loop, instead of doing so depending on what IsInSelection() returns. CPPUNIT_ASSERT(nA1Height > nA2Height); - xmlFreeDoc(pXmlDoc); + // Check that selection remains the same + CPPUNIT_ASSERT(xSelectionController->hasSelectedCells()); + xSelectionController->getSelectedCells(aFirstCell, aLastCell); + CPPUNIT_ASSERT_EQUAL(static_cast<sal_Int32>(0), aFirstCell.mnCol); + CPPUNIT_ASSERT_EQUAL(static_cast<sal_Int32>(0), aFirstCell.mnRow); + CPPUNIT_ASSERT_EQUAL(static_cast<sal_Int32>(1), aLastCell.mnCol); + CPPUNIT_ASSERT_EQUAL(static_cast<sal_Int32>(0), aLastCell.mnRow); + + xmlFreeDoc(pXmlDoc); comphelper::LibreOfficeKit::setActive(false); } diff --git a/sd/source/ui/func/futext.cxx b/sd/source/ui/func/futext.cxx index 19f18efa9906..9ea0570e6e17 100644 --- a/sd/source/ui/func/futext.cxx +++ b/sd/source/ui/func/futext.cxx @@ -1372,24 +1372,6 @@ bool FuText::cancel() } } -/// Is rCell covered by the rFirst - rLast selection? -static bool IsInSelection(const sdr::table::CellPos& rFirst, const sdr::table::CellPos& rLast, sdr::table::CellPos const & rCell) -{ - if (rCell.mnCol < rFirst.mnCol) - return false; - - if (rCell.mnCol > rLast.mnCol) - return false; - - if (rCell.mnRow < rFirst.mnRow) - return false; - - if (rCell.mnRow > rLast.mnRow) - return false; - - return true; -} - void FuText::ChangeFontSize( bool bGrow, OutlinerView* pOLV, const FontList* pFontList, ::sd::View* pView ) { if( !pFontList || !pView ) @@ -1410,31 +1392,12 @@ void FuText::ChangeFontSize( bool bGrow, OutlinerView* pOLV, const FontList* pFo if( pTextObj ) { rtl::Reference<sdr::SelectionController> xSelectionController(pView->getSelectionController()); - sdr::table::CellPos aFirstCell; - sdr::table::CellPos aLastCell; - sdr::table::SdrTableObj* pTableObject = nullptr; - if (xSelectionController.is() && xSelectionController->hasSelectedCells()) + if (xSelectionController.is() && xSelectionController->ChangeFontSize(bGrow, pFontList)) { - // This is a table object, and one or more of its cells are - // selected. - xSelectionController->getSelectedCells(aFirstCell, aLastCell); - pTableObject = dynamic_cast<sdr::table::SdrTableObj*>(pTextObj); + continue; } for( sal_Int32 nText = 0; nText < pTextObj->getTextCount(); nText++ ) { - if (pTableObject) - { - sal_Int32 nColCount = pTableObject->getColumnCount(); - if (nColCount > 0) - { - sdr::table::CellPos aPos(nText % nColCount, nText / nColCount); - if (!IsInSelection(aFirstCell, aLastCell, aPos)) - // There is a selection, but this cell is not - // part of it: don't change font size. - continue; - } - } - pTextObj->setActiveText( nText ); // Put text object into edit mode. |