View | Details | Raw Unified | Return to issue 108908
Collapse All | Expand All

(-)a/basegfx/source/polygon/b2dsvgpolypolygon.cxx (+1 lines)
Lines 73-78 Link Here
73
                const sal_Unicode aChar(rStr[nPos]);
73
                const sal_Unicode aChar(rStr[nPos]);
74
74
75
                const bool bPredicate( (sal_Unicode('0') <= aChar && sal_Unicode('9') >= aChar)
75
                const bool bPredicate( (sal_Unicode('0') <= aChar && sal_Unicode('9') >= aChar)
76
                                       || (sal_Unicode('.') == aChar)
76
                                       || (bSignAllowed && sal_Unicode('+') == aChar)
77
                                       || (bSignAllowed && sal_Unicode('+') == aChar)
77
                                       || (bSignAllowed && sal_Unicode('-') == aChar) );
78
                                       || (bSignAllowed && sal_Unicode('-') == aChar) );
78
79

Return to issue 108908