diff options
author | Eike Rathke <er@openoffice.org> | 2001-08-02 13:47:49 +0000 |
---|---|---|
committer | Eike Rathke <er@openoffice.org> | 2001-08-02 13:47:49 +0000 |
commit | 519a20fa2537054eb49073c2f4046d3f372aa456 (patch) | |
tree | 305b0bbbcedc279bad1b4caa7ba1432c5d7e5c3d /sc/inc/global.hxx | |
parent | 1594eac13ee650338e0625fc58e4b95fd421a0ca (diff) |
#90412# performance: moved English formatter from each document to one global
Diffstat (limited to 'sc/inc/global.hxx')
-rw-r--r-- | sc/inc/global.hxx | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/sc/inc/global.hxx b/sc/inc/global.hxx index 9bfe2380e6eb..3f73370f83af 100644 --- a/sc/inc/global.hxx +++ b/sc/inc/global.hxx @@ -2,9 +2,9 @@ * * $RCSfile: global.hxx,v $ * - * $Revision: 1.14 $ + * $Revision: 1.15 $ * - * last change: $Author: er $ $Date: 2001-07-11 15:16:28 $ + * last change: $Author: er $ $Date: 2001-08-02 14:45:23 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -558,6 +558,8 @@ class ScGlobal static ScUnitConverter* pUnitConverter; + static SvNumberFormatter* pEnglishFormatter; // for UNO / XML export + public: static ::com::sun::star::lang::Locale* pLocale; static SvtSysLocale* pSysLocale; @@ -645,6 +647,9 @@ public: static CharSet GetCharsetValue( const String& rCharSet ); static String GetCharsetString( CharSet eVal ); + + /// a "ReadOnly" formatter for UNO/XML export + static SvNumberFormatter* GetEnglishFormatter(); }; #endif |