filter/source/msfilter/escherex.cxx | 2 ++ 1 file changed, 2 insertions(+)
New commits: commit 5ffd2c1595d1f67f5e4b14e48188a1f37f1956b5 Author: Stephan Bergmann <[email protected]> Date: Tue May 10 17:52:35 2016 +0200 Presumably missing break in switch Was like that at least since d2000efb31f864e912c6cf52760eea0e602b6893 "#i106421#: move msfilter to filter", but as clarified on IRC: <vmiklos> sberg: doesn't look intended, i think ESCHER_Prop_lineDashing and ESCHER_Prop_fNoLineDrawDash are supposed to be mutually exclusive. Change-Id: I5ea92e6bdc9800c4511ca041c0572d1f9ffca49c diff --git a/filter/source/msfilter/escherex.cxx b/filter/source/msfilter/escherex.cxx index d675576..fe04bc9 100644 --- a/filter/source/msfilter/escherex.cxx +++ b/filter/source/msfilter/escherex.cxx @@ -1062,6 +1062,8 @@ void EscherPropertyContainer::CreateLineProperties( AddOpt( ESCHER_Prop_lineDashing, eDash ); } } + break; + case css::drawing::LineStyle_SOLID : default: { _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
