diff options
author | Caolán McNamara <caolanm@redhat.com> | 2021-03-03 17:02:34 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2021-03-04 10:07:52 +0100 |
commit | 366710b21a6a5556c4713bbc5d917b7ba17d7c85 (patch) | |
tree | 70e4bf84488570d9419d53dd6713429a8a511988 /svx | |
parent | eef43192d4c7b2867638c54a2ac31adfc26476c7 (diff) |
explicitly name static method
Change-Id: I691c7dc21d87f58d11263d0556991df8731b97d1
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/111933
Tested-by: Caolán McNamara <caolanm@redhat.com>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/sidebar/line/LinePropertyPanelBase.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/sidebar/line/LinePropertyPanelBase.cxx b/svx/source/sidebar/line/LinePropertyPanelBase.cxx index f5a8f4db487d..0f373900e206 100644 --- a/svx/source/sidebar/line/LinePropertyPanelBase.cxx +++ b/svx/source/sidebar/line/LinePropertyPanelBase.cxx @@ -417,7 +417,7 @@ void LinePropertyPanelBase::SetWidthIcon() return; } - tools::Long nVal = LogicToLogic(mnWidthCoreValue * 10, meMapUnit, MapUnit::MapPoint); + tools::Long nVal = OutputDevice::LogicToLogic(mnWidthCoreValue * 10, meMapUnit, MapUnit::MapPoint); if(nVal <= 6) mxTBWidth->set_item_icon_name(SELECTWIDTH, maIMGWidthIcon[0]); |