summaryrefslogtreecommitdiff
path: root/sw/source/core/unocore/unotext.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/core/unocore/unotext.cxx')
-rw-r--r--sw/source/core/unocore/unotext.cxx26
1 files changed, 2 insertions, 24 deletions
diff --git a/sw/source/core/unocore/unotext.cxx b/sw/source/core/unocore/unotext.cxx
index 6d01370e5d19..02603e941789 100644
--- a/sw/source/core/unocore/unotext.cxx
+++ b/sw/source/core/unocore/unotext.cxx
@@ -2036,32 +2036,10 @@ lcl_ApplyCellProperties(
{
xCellPS->setPropertyValue(rName, rValue);
}
- catch (const uno::Exception&)
+ catch (const uno::Exception& e)
{
- // Apply the paragraph and char properties to the cell's content
- const uno::Reference< text::XText > xCellText(xCell,
- uno::UNO_QUERY);
- const uno::Reference< text::XTextCursor > xCellCurs =
- xCellText->createTextCursor();
- xCellCurs->gotoStart( false );
- xCellCurs->gotoEnd( true );
- const uno::Reference< beans::XPropertyState >
- xCellTextPropState(xCellCurs, uno::UNO_QUERY);
- try
- {
- const beans::PropertyState state = xCellTextPropState->getPropertyState(rName);
- if (state == beans::PropertyState_DEFAULT_VALUE)
- {
- const uno::Reference< beans::XPropertySet >
- xCellTextProps(xCellCurs, uno::UNO_QUERY);
- xCellTextProps->setPropertyValue(rName, rValue);
- }
- }
- catch (const uno::Exception& e)
- {
- SAL_WARN( "sw.uno", "Exception when getting PropertyState: "
+ SAL_WARN( "sw.uno", "Exception when getting PropertyState: "
+ rName + ". Message: " + e.Message );
- }
}
}
}