summaryrefslogtreecommitdiff
path: root/sc/source/core/inc/poolhelp.hxx
diff options
context:
space:
mode:
authorEike Rathke <er@openoffice.org>2001-08-02 13:47:49 +0000
committerEike Rathke <er@openoffice.org>2001-08-02 13:47:49 +0000
commit519a20fa2537054eb49073c2f4046d3f372aa456 (patch)
tree305b0bbbcedc279bad1b4caa7ba1432c5d7e5c3d /sc/source/core/inc/poolhelp.hxx
parent1594eac13ee650338e0625fc58e4b95fd421a0ca (diff)
#90412# performance: moved English formatter from each document to one global
Diffstat (limited to 'sc/source/core/inc/poolhelp.hxx')
-rw-r--r--sc/source/core/inc/poolhelp.hxx7
1 files changed, 2 insertions, 5 deletions
diff --git a/sc/source/core/inc/poolhelp.hxx b/sc/source/core/inc/poolhelp.hxx
index 51b37d8b22ea..9b00630d9287 100644
--- a/sc/source/core/inc/poolhelp.hxx
+++ b/sc/source/core/inc/poolhelp.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: poolhelp.hxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: sab $ $Date: 2001-07-18 07:59:42 $
+ * last change: $Author: er $ $Date: 2001-08-02 14:47:15 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -80,11 +80,9 @@ class SfxItemPool;
class ScPoolHelper : public vos::OReference
{
private:
- Link aColorLink; // for NumberFormatter
ScDocumentPool* pDocPool;
ScStyleSheetPool* pStylePool;
SvNumberFormatter* pFormTable;
- SvNumberFormatter* pEngFormTable;
SfxItemPool* pEditPool; // EditTextObjectPool
SfxItemPool* pEnginePool; // EditEnginePool
@@ -99,7 +97,6 @@ public:
ScDocumentPool* GetDocPool() const { return pDocPool; }
ScStyleSheetPool* GetStylePool() const { return pStylePool; }
SvNumberFormatter* GetFormTable() const { return pFormTable; }
- SvNumberFormatter* GetEngFormTable() const { return pEngFormTable; }
SfxItemPool* GetEditPool() const { return pEditPool; }
SfxItemPool* GetEnginePool() const { return pEnginePool; }
};