diff options
author | Noel Grandin <noel@peralex.com> | 2013-10-04 12:33:32 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-10-08 10:03:06 +0200 |
commit | c81dec478ab0618f2acd2580654a93d3a7185444 (patch) | |
tree | 02e705f7c8187a664053fbd5d48f86c58567a27e /sc/inc/consoli.hxx | |
parent | 80f6e8a4dca9f2906b85e74b3a5f4f4090f1c6c6 (diff) |
convert the OUString* arrays in ScConsData to arrays of OUString
No need to store pointers to these.
If I was braver I would convert these to vector, but that's for
another day.
Change-Id: I7949f6c50a9a67208a9b87db7726c9801463a485
Diffstat (limited to 'sc/inc/consoli.hxx')
-rw-r--r-- | sc/inc/consoli.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/inc/consoli.hxx b/sc/inc/consoli.hxx index 09074853a97f..9ae506096eeb 100644 --- a/sc/inc/consoli.hxx +++ b/sc/inc/consoli.hxx @@ -80,11 +80,11 @@ private: double** ppCount; double** ppSumSqr; ScReferenceList** ppRefs; - OUString** ppColHeaders; - OUString** ppRowHeaders; + OUString* mpColHeaders; + OUString* mpRowHeaders; SCSIZE nDataCount; SCSIZE nTitleCount; - OUString** ppTitles; + OUString* mpTitles; SCSIZE** ppTitlePos; sal_Bool bCornerUsed; OUString aCornerText; // only for bColByName && bRowByName |