diff options
author | Khaled Hosny <khaled@libreoffice.org> | 2023-07-19 06:11:00 +0300 |
---|---|---|
committer | خالد حسني <khaled@libreoffice.org> | 2023-07-23 06:04:02 +0200 |
commit | ee2238aa68eac68f467704629d22b699f0a92a1b (patch) | |
tree | 79523605eb8744914fc90d5c85e18123ad2ee5bf /include/vcl | |
parent | 9057641f678b8e36c9dbc41960b182c6ecfdda15 (diff) |
vcl: Use double for width in OutputDevice::ImplDrawTextLine()
Change-Id: Ia6bde62b20e87d7ce3c15b0e915a0c6ecc02c393
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/154607
Tested-by: Jenkins
Reviewed-by: خالد حسني <khaled@libreoffice.org>
Diffstat (limited to 'include/vcl')
-rw-r--r-- | include/vcl/outdev.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/vcl/outdev.hxx b/include/vcl/outdev.hxx index f898f4f13902..e61138919008 100644 --- a/include/vcl/outdev.hxx +++ b/include/vcl/outdev.hxx @@ -890,7 +890,7 @@ public: FontLineStyle eOverline, bool bUnderlineAbove = false ); - void ImplDrawTextLine( tools::Long nBaseX, tools::Long nX, tools::Long nY, DeviceCoordinate nWidth, + void ImplDrawTextLine( tools::Long nBaseX, tools::Long nX, tools::Long nY, double nWidth, FontStrikeout eStrikeout, FontLineStyle eUnderline, FontLineStyle eOverline, bool bUnderlineAbove ); |