summaryrefslogtreecommitdiff
path: root/oox
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2013-10-07 12:04:25 +0200
committerThomas Arnhold <thomas@arnhold.org>2013-10-07 12:04:25 +0200
commit1bbfa2834ee5f6ddefc801c2a63ce3fe9a5c863e (patch)
tree1083a62f447979315ba4735c27e9e558cd076366 /oox
parent6349540d939e3bc3a96cec2615352a4b056b7fa5 (diff)
fix build: use rAttribs :)
Change-Id: I383bd331090603aa9a159e41ef26be8d8e1c5ff3
Diffstat (limited to 'oox')
-rw-r--r--oox/source/drawingml/textcharacterpropertiescontext.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/oox/source/drawingml/textcharacterpropertiescontext.cxx b/oox/source/drawingml/textcharacterpropertiescontext.cxx
index a937dba392d2..d077b4dbafa6 100644
--- a/oox/source/drawingml/textcharacterpropertiescontext.cxx
+++ b/oox/source/drawingml/textcharacterpropertiescontext.cxx
@@ -52,8 +52,8 @@ TextCharacterPropertiesContext::TextCharacterPropertiesContext(
mrTextCharacterProperties.moUnderline = rAttribs.getToken( XML_u );
if ( rAttribs.hasAttribute( XML_strike ) )
mrTextCharacterProperties.moStrikeout = rAttribs.getToken( XML_strike );
- if ( aAttribs.hasAttribute( XML_baseline ) )
- mrTextCharacterProperties.moBaseline = aAttribs.getInteger( XML_baseline );
+ if ( rAttribs.hasAttribute( XML_baseline ) )
+ mrTextCharacterProperties.moBaseline = rAttribs.getInteger( XML_baseline );
if ( rAttribs.hasAttribute( XML_b ) )
mrTextCharacterProperties.moBold = rAttribs.getBool( XML_b );