diff options
author | Jochen Nitschke <j.nitschke+logerrit@ok.de> | 2016-12-28 12:43:31 +0100 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-12-30 18:48:24 +0000 |
commit | a29bd2dabb194c57be28d48ccc08c909831e7e67 (patch) | |
tree | 4afc38c5b5ad034a8784ae0c0f0317b6d676510d /onlineupdate | |
parent | 97d24068021265e5f159211c90839622f7c87cb2 (diff) |
cleanup tailing backslashes
Change-Id: Idb4bfc97e7d758c58118742affd9a9345c7a99f2
Reviewed-on: https://gerrit.libreoffice.org/32491
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'onlineupdate')
-rw-r--r-- | onlineupdate/source/update/updater/progressui_win.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/onlineupdate/source/update/updater/progressui_win.cxx b/onlineupdate/source/update/updater/progressui_win.cxx index 7a0ff249442f..3d4ac09a28d4 100644 --- a/onlineupdate/source/update/updater/progressui_win.cxx +++ b/onlineupdate/source/update/updater/progressui_win.cxx @@ -153,9 +153,9 @@ InitDialog(HWND hDlg) // Calculate the additional space needed for the text by subtracting from // the rectangle returned by DrawText the existing client rectangle's width // and height. - extra.cx = (textSize.right - textSize.left) - \ + extra.cx = (textSize.right - textSize.left) - (infoSize.right - infoSize.left); - extra.cy = (textSize.bottom - textSize.top) - \ + extra.cy = (textSize.bottom - textSize.top) - (infoSize.bottom - infoSize.top); if (extra.cx < 0) extra.cx = 0; |