diff options
author | Noel Grandin <noel@peralex.com> | 2016-09-02 08:36:23 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-09-05 08:21:46 +0200 |
commit | 65ca57a447bae97714b1b32aa2df5705215a95ad (patch) | |
tree | 9b62f8fb4a890d5fcba13abc446b3244e9c5232f /extensions/source/update/ui | |
parent | a881fd7e66294ada222e1d618a7d47a0549a2342 (diff) |
convert LineStyle to scoped enum
Change-Id: I30cfa5a0649b806604c443f55683d1f2a430983d
Diffstat (limited to 'extensions/source/update/ui')
-rw-r--r-- | extensions/source/update/ui/updatecheckui.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/source/update/ui/updatecheckui.cxx b/extensions/source/update/ui/updatecheckui.cxx index b28c11e76b0a..8bbc834d83b1 100644 --- a/extensions/source/update/ui/updatecheckui.cxx +++ b/extensions/source/update/ui/updatecheckui.cxx @@ -806,7 +806,7 @@ void BubbleWindow::Paint(vcl::RenderContext& /*rRenderContext*/, const Rectangle { SolarMutexGuard aGuard; - LineInfo aThickLine( LINE_SOLID, 2 ); + LineInfo aThickLine( LineStyle::Solid, 2 ); DrawPolyLine( maRectPoly, aThickLine ); DrawPolyLine( maTriPoly ); |