summaryrefslogtreecommitdiff
path: root/misc/libreoffice4/patches/patch-oox_source_drawingml_table_tablecell.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'misc/libreoffice4/patches/patch-oox_source_drawingml_table_tablecell.cxx')
-rw-r--r--misc/libreoffice4/patches/patch-oox_source_drawingml_table_tablecell.cxx16
1 files changed, 0 insertions, 16 deletions
diff --git a/misc/libreoffice4/patches/patch-oox_source_drawingml_table_tablecell.cxx b/misc/libreoffice4/patches/patch-oox_source_drawingml_table_tablecell.cxx
deleted file mode 100644
index e37ae005406..00000000000
--- a/misc/libreoffice4/patches/patch-oox_source_drawingml_table_tablecell.cxx
+++ /dev/null
@@ -1,16 +0,0 @@
-$NetBSD: patch-oox_source_drawingml_table_tablecell.cxx,v 1.1 2014/08/26 20:58:43 joerg Exp $
-
---- oox/source/drawingml/table/tablecell.cxx.orig 2014-08-24 19:21:08.000000000 +0000
-+++ oox/source/drawingml/table/tablecell.cxx
-@@ -117,9 +117,9 @@ void applyTableStylePart( oox::drawingml
- 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 )