summaryrefslogtreecommitdiff
path: root/vcl/headless/CustomWidgetDraw.cxx
diff options
context:
space:
mode:
authorTomaž Vajngerl <tomaz.vajngerl@collabora.co.uk>2018-09-11 22:35:12 +0200
committerJan Holesovsky <kendy@collabora.com>2018-11-09 18:42:30 +0100
commit7d879658886cd73b38b12e5e6081bac7eda145d1 (patch)
treee0c5d44f03020a01eef2d5dfc83e092bce0f2710 /vcl/headless/CustomWidgetDraw.cxx
parent61dc61fd3612118718374a0bd5a6ceedfb2a4300 (diff)
custom widgets: draw fixed line widget
Change-Id: Icb8cfbe09caf5cbfcf1d3f461c297c052056250d
Diffstat (limited to 'vcl/headless/CustomWidgetDraw.cxx')
-rw-r--r--vcl/headless/CustomWidgetDraw.cxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/vcl/headless/CustomWidgetDraw.cxx b/vcl/headless/CustomWidgetDraw.cxx
index aa4732c1bd05..5cf2ccf83f55 100644
--- a/vcl/headless/CustomWidgetDraw.cxx
+++ b/vcl/headless/CustomWidgetDraw.cxx
@@ -236,7 +236,10 @@ bool CustomWidgetDraw::drawNativeControl(ControlType eType, ControlPart ePart,
}
break;
case ControlType::Fixedline:
- break;
+ {
+ bOK = s_pWidgetImplementation->drawFixedline(aParameters, nWidth, nHeight);
+ }
+ break;
case ControlType::Toolbar:
{
bOK = s_pWidgetImplementation->drawToolbar(aParameters, nWidth, nHeight);