[Libreoffice-commits] core.git: oox/source

Caolán McNamara caolanm at redhat.com
Wed Mar 18 17:36:22 PDT 2015


 oox/source/drawingml/table/tableproperties.cxx |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit bdad6d0fe492a2334cb27ef54fc5d1cba17d1970
Author: Caolán McNamara <caolanm at redhat.com>
Date:   Wed Mar 18 20:19:28 2015 +0000

    mbOwnTblStyle->bOwnTblStyle, its not a member
    
    Change-Id: I3611a1873463cd5dc6d336ffa22c244eaeb6d824

diff --git a/oox/source/drawingml/table/tableproperties.cxx b/oox/source/drawingml/table/tableproperties.cxx
index 4bea172..529e2b4 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;


More information about the Libreoffice-commits mailing list