From: rwst Date: Tue, 27 Jun 2006 15:52:56 +0000 (+0000) Subject: fix 4.2 xcompilation: remove array assignment hack X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=83ab1c91731716aff9bcdae08b7a7e3068c555db;p=inkscape.git fix 4.2 xcompilation: remove array assignment hack --- 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);