diff options
author | Eike Rathke <er@openoffice.org> | 2001-11-05 11:16:00 +0000 |
---|---|---|
committer | Eike Rathke <er@openoffice.org> | 2001-11-05 11:16:00 +0000 |
commit | 1cc2a46ac74be899e2440a161845da4f6dc428c2 (patch) | |
tree | 70d3928e4a27998c1c588e59b4b1160188fcc329 /sc/inc/attarray.hxx | |
parent | a4c09a50c7ec0895396a3b12574a2341b5c4ef7f (diff) |
#92553# performance: SetPatternArea: avoid unnecessary new/delete and data copies
Diffstat (limited to 'sc/inc/attarray.hxx')
-rw-r--r-- | sc/inc/attarray.hxx | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sc/inc/attarray.hxx b/sc/inc/attarray.hxx index 1c5a595e679a..57698c450b47 100644 --- a/sc/inc/attarray.hxx +++ b/sc/inc/attarray.hxx @@ -2,9 +2,9 @@ * * $RCSfile: attarray.hxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: er $ $Date: 2001-08-10 18:01:16 $ + * last change: $Author: er $ $Date: 2001-11-05 12:16:00 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -86,6 +86,8 @@ class SvxBoxInfoItem; #define SC_LINE_SET 1 #define SC_LINE_DONTCARE 2 +#define SC_ATTRARRAY_DELTA 4 + struct ScLineFlags { BYTE nLeft; @@ -114,6 +116,7 @@ private: ScDocument* pDocument; USHORT nCount; + USHORT nLimit; ScAttrEntry* pData; friend class ScDocument; // fuer FillInfo |