summaryrefslogtreecommitdiff
path: root/starmath/inc
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2017-02-03 06:49:01 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2017-02-03 04:34:55 +0000
commitc0d3916cb7777918dbca359e88fb69f92ebf93ff (patch)
tree9cd632059af0eb08c9722ba63079559f34a9e007 /starmath/inc
parent789ed159fb03eef26c991f361380d0eb7b509cd9 (diff)
starmath: Prefix member of SmNodeToTextVisitor
Change-Id: I83f5c5664aca925f874be8ac939356228697d05f Reviewed-on: https://gerrit.libreoffice.org/33850 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Takeshi Abe <tabe@fixedpoint.jp>
Diffstat (limited to 'starmath/inc')
-rw-r--r--starmath/inc/visitors.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/starmath/inc/visitors.hxx b/starmath/inc/visitors.hxx
index 622a74ebc773..1ac1db112750 100644
--- a/starmath/inc/visitors.hxx
+++ b/starmath/inc/visitors.hxx
@@ -446,15 +446,15 @@ private:
Separate( );
}
void Append( const OUString &rText ) {
- aCmdText.append( rText );
+ maCmdText.append( rText );
}
/** Append a blank for separation, if needed */
inline void Separate( ){
- if( aCmdText.isEmpty() || aCmdText[ aCmdText.getLength() - 1 ] != ' ' )
- aCmdText.append(' ');
+ if( maCmdText.isEmpty() || maCmdText[ maCmdText.getLength() - 1 ] != ' ' )
+ maCmdText.append(' ');
}
/** Output text generated from the pNodes */
- OUStringBuffer aCmdText;
+ OUStringBuffer maCmdText;
};
#endif // INCLUDED_STARMATH_INC_VISITORS_HXX