diff options
author | Jörg Sonnenberger <joerg@NetBSD.org> | 2014-08-28 12:18:43 +0200 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-08-29 10:10:15 +0100 |
commit | 45dfbdca6a9afba1a6aef21623ec025ded635a4d (patch) | |
tree | 95295133c3d2872825081cb0b6e3984c4f437454 /oox | |
parent | c6270de939d5ee51b61dc4ac02c52f1d9b5b1e47 (diff) |
Fix build with boost-1.56.0.
Change-Id: I61686bf61ff1e0561c385492c563e4495456ca47
Signed-off-by: Thomas Klausner <wiz@NetBSD.org>
Diffstat (limited to 'oox')
-rw-r--r-- | oox/source/drawingml/table/tablecell.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/oox/source/drawingml/table/tablecell.cxx b/oox/source/drawingml/table/tablecell.cxx index e91f5b8189de..033434a7a49c 100644 --- a/oox/source/drawingml/table/tablecell.cxx +++ b/oox/source/drawingml/table/tablecell.cxx @@ -117,9 +117,9 @@ void applyTableStylePart( oox::drawingml::FillProperties& rFillProperties, if (rTableStylePart.getTextColor().isUsed()) aTextCharProps.maCharColor = rTableStylePart.getTextColor(); if( rTableStylePart.getTextBoldStyle().is_initialized() ) - aTextCharProps.moBold = rTableStylePart.getTextBoldStyle(); + aTextCharProps.moBold = *rTableStylePart.getTextBoldStyle(); if( rTableStylePart.getTextItalicStyle().is_initialized() ) - aTextCharProps.moItalic = rTableStylePart.getTextItalicStyle(); + aTextCharProps.moItalic = *rTableStylePart.getTextItalicStyle(); } void applyTableCellProperties( const Reference < ::com::sun::star::table::XCell >& rxCell, const TableCell& rTableCell ) |