From 77262bf62af8a8ae85b70d2a7a32d1ab7f48b437 Mon Sep 17 00:00:00 2001 From: Ralf Stephan Date: Tue, 27 Jun 2006 15:52:56 +0000 Subject: fix 4.2 xcompilation: remove array assignment hack (bzr r1309) --- src/ui/widget/selected-style.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/ui/widget/selected-style.cpp') diff --git a/src/ui/widget/selected-style.cpp b/src/ui/widget/selected-style.cpp index 44d8232e0..a2e57d600 100644 --- a/src/ui/widget/selected-style.cpp +++ b/src/ui/widget/selected-style.cpp @@ -109,11 +109,12 @@ SelectedStyle::SelectedStyle(bool layout) _sw_unit(NULL), - _tooltips (), + _tooltips () - _drop((void*[]){0,0}), - _dropEnabled((bool[]){false, false}) { + _drop[0] = _drop[1] = 0; + _dropEnabled[0] = _dropEnabled[1] = false; + _fill_label.set_alignment(0.0, 0.5); _fill_label.set_padding(0, 0); _stroke_label.set_alignment(0.0, 0.5); -- cgit v1.2.3