From bdad6d0fe492a2334cb27ef54fc5d1cba17d1970 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Wed, 18 Mar 2015 20:19:28 +0000 Subject: mbOwnTblStyle->bOwnTblStyle, its not a member Change-Id: I3611a1873463cd5dc6d336ffa22c244eaeb6d824 --- oox/source/drawingml/table/tableproperties.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/oox/source/drawingml/table/tableproperties.cxx b/oox/source/drawingml/table/tableproperties.cxx index 4bea172e45f9..529e2b4b16f6 100644 --- a/oox/source/drawingml/table/tableproperties.cxx +++ b/oox/source/drawingml/table/tableproperties.cxx @@ -267,8 +267,8 @@ void TableProperties::pushToPropSet( const ::oox::core::XmlFilterBase& rFilterBa CreateTableColumns( xColumnRowRange->getColumns(), mvTableGrid ); CreateTableRows( xColumnRowRange->getRows(), mvTableRows ); - bool mbOwnTblStyle = false; - const TableStyle& rTableStyle( getUsedTableStyle( rFilterBase, mbOwnTblStyle ) ); + bool bOwnTblStyle = false; + const TableStyle& rTableStyle( getUsedTableStyle( rFilterBase, bOwnTblStyle ) ); sal_Int32 nRow = 0; const std::vector< TableRow >::const_iterator aTableRowEnd( mvTableRows.end() ); for (std::vector< TableRow >::iterator aTableRowIter( mvTableRows.begin() ); @@ -293,7 +293,7 @@ void TableProperties::pushToPropSet( const ::oox::core::XmlFilterBase& rFilterBa } } - if(mbOwnTblStyle) + if(bOwnTblStyle) { TableStyle* pTableStyle = (TableStyle*)&rTableStyle; delete pTableStyle; -- cgit