diff options
author | Luboš Luňák <l.lunak@suse.cz> | 2011-12-02 17:38:51 +0100 |
---|---|---|
committer | Luboš Luňák <l.lunak@suse.cz> | 2011-12-07 14:47:11 +0100 |
commit | 7be8bac42aa578dc7f250a490634e13d1dac550b (patch) | |
tree | c9b51c1b92a6683d50277038549243cd59eed7d5 /starmath | |
parent | 1e4fb45c03e1787a6f73a93a1d9a68911d17a4e6 (diff) |
make the linear xml processing API more generic
I'm pretty sure I'll love to use it in writerfilter instead of the normal
API whenever I get the chance.
Diffstat (limited to 'starmath')
-rw-r--r-- | starmath/source/ooxmlimport.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/starmath/source/ooxmlimport.cxx b/starmath/source/ooxmlimport.cxx index c776163de16a..73f0ea50b7dd 100644 --- a/starmath/source/ooxmlimport.cxx +++ b/starmath/source/ooxmlimport.cxx @@ -44,8 +44,8 @@ The primary internal data structure for the formula is the text representation */ #define M_TOKEN( token ) OOX_TOKEN( officeMath, token ) -#define OPENING_TAG( token ) OPENING( token ) -#define CLOSING_TAG( token ) CLOSING( token ) +#define OPENING( token ) XML_STREAM_OPENING( token ) +#define CLOSING( token ) XML_STREAM_CLOSING( token ) // *sigh* #define STR( str ) OUString( RTL_CONSTASCII_USTRINGPARAM( str )) |