diff options
author | Noel Grandin <noel@peralex.com> | 2016-04-20 10:34:01 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-04-21 08:32:47 +0200 |
commit | 5abc669599001bf888b97c4d3c2715e1fb7523b9 (patch) | |
tree | 2407c6fc040a795e6ffc69de02ba940285c04c7f /oox/source/drawingml/table/tablestylecellstylecontext.cxx | |
parent | 5bb308a9ad16f6002486a60e4a753693818580b6 (diff) |
new plugin stylepolice
check for local variables which follow our member field naming
convention, which is highly confusing
Change-Id: Idacedf7145d09843e96a584237b385f7662eea10
Diffstat (limited to 'oox/source/drawingml/table/tablestylecellstylecontext.cxx')
-rw-r--r-- | oox/source/drawingml/table/tablestylecellstylecontext.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/oox/source/drawingml/table/tablestylecellstylecontext.cxx b/oox/source/drawingml/table/tablestylecellstylecontext.cxx index ef9be244dfe0..6f6f2354203a 100644 --- a/oox/source/drawingml/table/tablestylecellstylecontext.cxx +++ b/oox/source/drawingml/table/tablestylecellstylecontext.cxx @@ -66,9 +66,9 @@ TableStyleCellStyleContext::onCreateContext( ::sal_Int32 aElementToken, const At if ( mnLineType != XML_none ) { std::map < sal_Int32, ::oox::drawingml::LinePropertiesPtr >& rLineBorders = mrTableStylePart.getLineBorders(); - ::oox::drawingml::LinePropertiesPtr mpLineProperties( new oox::drawingml::LineProperties ); - rLineBorders[ mnLineType ] = mpLineProperties; - return new LinePropertiesContext( *this, rAttribs, *mpLineProperties ); + ::oox::drawingml::LinePropertiesPtr pLineProperties( new oox::drawingml::LineProperties ); + rLineBorders[ mnLineType ] = pLineProperties; + return new LinePropertiesContext( *this, rAttribs, *pLineProperties ); } } break; |