diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-05-31 21:50:51 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-06-01 15:37:26 +0100 |
commit | 652c7ca06db65bfc7138659ee4f89122548aee07 (patch) | |
tree | 2a8ff37101dc6627ac40a862d4fbb43281dda771 /starmath/inc/parse.hxx | |
parent | 909fa34d46cf6c382180b56c5c8b58478b4337f0 (diff) |
make this per-class instead of a local static
Diffstat (limited to 'starmath/inc/parse.hxx')
-rw-r--r-- | starmath/inc/parse.hxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/starmath/inc/parse.hxx b/starmath/inc/parse.hxx index cc17e951df28..7b1319d43bba 100644 --- a/starmath/inc/parse.hxx +++ b/starmath/inc/parse.hxx @@ -209,6 +209,9 @@ class SmParser // map of used symbols (used to reduce file size by exporting only actually used symbols) std::set< rtl::OUString > m_aUsedSymbols; + //! locale where '.' is decimal seperator! + ::com::sun::star::lang::Locale m_aDotLoc; + // declare copy-constructor and assignment-operator private SmParser(const SmParser &); SmParser & operator = (const SmParser &); |