diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2012-10-11 06:29:26 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2012-10-11 06:30:17 +0200 |
commit | 27f1ba57e21df720553b2a8b321c2d0af58bc9f3 (patch) | |
tree | 3de489e59d5fab926657576990594f6dea63becb /sc/source/ui/dbgui | |
parent | 21ccb6b4d93282fbd93d6764ae29e0f1af7b2f68 (diff) |
kill RefEdit constructor that does not initialize the highlighting
Change-Id: I5c277526fdf376bfa96466e25975388edc3c7950
Diffstat (limited to 'sc/source/ui/dbgui')
-rw-r--r-- | sc/source/ui/dbgui/validate.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/dbgui/validate.cxx b/sc/source/ui/dbgui/validate.cxx index 5fc701a72043..390ad1743e63 100644 --- a/sc/source/ui/dbgui/validate.cxx +++ b/sc/source/ui/dbgui/validate.cxx @@ -323,10 +323,10 @@ ScTPValidationValue::ScTPValidationValue( Window* pParent, const SfxItemSet& rAr maFtValue ( this, ScResId( FT_VALUE ) ), maLbValue ( this, ScResId( LB_VALUE ) ), maFtMin ( this, ScResId( FT_MIN ) ), - maEdMin ( this, ScResId( EDT_MIN ) ), + maEdMin ( this, NULL, ScResId( EDT_MIN ) ), maEdList ( this, ScResId( EDT_LIST ) ), maFtMax ( this, ScResId( FT_MAX ) ), - maEdMax ( this, ScResId( EDT_MAX ) ), + maEdMax ( this, NULL, ScResId( EDT_MAX ) ), maFtHint ( this, ScResId( FT_SOURCEHINT ) ), maStrMin ( ScResId( SCSTR_VALID_MINIMUM ) ), maStrMax ( ScResId( SCSTR_VALID_MAXIMUM ) ), |