diff options
author | Luboš Luňák <l.lunak@suse.cz> | 2011-11-24 16:07:25 +0100 |
---|---|---|
committer | Luboš Luňák <l.lunak@suse.cz> | 2011-11-24 18:43:59 +0100 |
commit | 199c95b3e9f4fc0f13cb0423b7f64779e4dfad9f (patch) | |
tree | 2dc3df2094e9be1b690d36381d0b7552b76c1597 /oox | |
parent | 944f9e13e3942de7fec0d52c6e6d839e00e77604 (diff) |
fix inverted bool argument
Diffstat (limited to 'oox')
-rw-r--r-- | oox/source/mathml/importutils.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/oox/source/mathml/importutils.cxx b/oox/source/mathml/importutils.cxx index ac25b89f6bd3..bec392922ecb 100644 --- a/oox/source/mathml/importutils.cxx +++ b/oox/source/mathml/importutils.cxx @@ -79,17 +79,17 @@ void XmlStream::moveToNextTag() XmlStream::Tag XmlStream::ensureOpeningTag( int token ) { - return checkTag( OPENING( token ), true, "opening" ); + return checkTag( OPENING( token ), false, "opening" ); } XmlStream::Tag XmlStream::checkOpeningTag( int token ) { - return checkTag( OPENING( token ), false, "opening" ); + return checkTag( OPENING( token ), true, "opening" ); } void XmlStream::ensureClosingTag( int token ) { - checkTag( CLOSING( token ), true, "closing" ); + checkTag( CLOSING( token ), false, "closing" ); } XmlStream::Tag XmlStream::checkTag( int token, bool optional, const char* txt ) |