summaryrefslogtreecommitdiff
path: root/oox
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-03-18 20:19:28 +0000
committerCaolán McNamara <caolanm@redhat.com>2015-03-19 00:35:10 +0000
commitbdad6d0fe492a2334cb27ef54fc5d1cba17d1970 (patch)
tree7cb0bd32c555b2f10ad46384df204bc3d857d21f /oox
parent6ef1cb0c573c479b23866184b819be6226755179 (diff)
mbOwnTblStyle->bOwnTblStyle, its not a member
Change-Id: I3611a1873463cd5dc6d336ffa22c244eaeb6d824
Diffstat (limited to 'oox')
-rw-r--r--oox/source/drawingml/table/tableproperties.cxx6
1 files 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;