summaryrefslogtreecommitdiff
path: root/sc/source/ui/inc/datafdlg.hxx
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2011-08-03 23:37:40 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2011-08-03 23:37:40 +0200
commit4fdd461b16f73c8752a6a68ba41eb11f26a9f71b (patch)
tree2878b101ec36dfaee07afa330612b9d793046aa1 /sc/source/ui/inc/datafdlg.hxx
parenta9c0dc18a16a1950143aff474f821c6b3ada145c (diff)
change from c-array to boost::ptr_vector
Diffstat (limited to 'sc/source/ui/inc/datafdlg.hxx')
-rw-r--r--sc/source/ui/inc/datafdlg.hxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/sc/source/ui/inc/datafdlg.hxx b/sc/source/ui/inc/datafdlg.hxx
index fea9e132f0ef..fadc6883629d 100644
--- a/sc/source/ui/inc/datafdlg.hxx
+++ b/sc/source/ui/inc/datafdlg.hxx
@@ -39,6 +39,8 @@
#include <sfx2/bindings.hxx>
#include <sfx2/dispatch.hxx>
+#include <boost/ptr_container/ptr_vector.hpp>
+
#define MAX_DATAFORM_COLS 256
#define MAX_DATAFORM_ROWS 32000
#define CTRL_HEIGHT 22
@@ -73,8 +75,8 @@ private:
SCTAB nTab;
sal_Bool bNoSelection;
- FixedText** pFixedTexts;
- Edit** pEdits;
+ boost::ptr_vector<FixedText> maFixedTexts;
+ boost::ptr_vector<Edit> maEdits;
public:
ScDataFormDlg( Window* pParent, ScTabViewShell* pTabViewShell);