diff options
author | Miklos Vajna <vmiklos@collabora.com> | 2019-03-13 21:35:42 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2019-03-14 09:05:50 +0100 |
commit | 2f83055cdbd915d5036a7b4374b4ad10e6efc65f (patch) | |
tree | f8eb88d7030a771076345d6a2e9ad29d2d6520b9 /sw/inc | |
parent | 00f96e88a7c6feea98d446e82a2718c5aae6256c (diff) |
sw btlr writing mode shell: fix cursor selection
All changes are about not assuming logical top is a lower y value than
logical bottom, by going via the SwRectFnSet abstraction, which already
does the right thing.
Change-Id: I94a9881b018ad14b02e97425f60af01aa3fd9269
Reviewed-on: https://gerrit.libreoffice.org/69226
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Diffstat (limited to 'sw/inc')
-rw-r--r-- | sw/inc/swrect.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sw/inc/swrect.hxx b/sw/inc/swrect.hxx index c4b1889ae4ae..a09b38e81a8c 100644 --- a/sw/inc/swrect.hxx +++ b/sw/inc/swrect.hxx @@ -23,6 +23,7 @@ #include <sal/log.hxx> #include <tools/gen.hxx> +#include "swdllapi.h" class SvStream; @@ -30,7 +31,7 @@ class SvStream; /// This is half-open so m_Point.X() + m_Size.getWidth() is *not* included. /// Note the tools Rectangle is (usually? sometimes?) closed so there's a /// SVRect() to subtract 1 for the conversion. -class SAL_WARN_UNUSED SwRect +class SAL_WARN_UNUSED SW_DLLPUBLIC SwRect { Point m_Point; Size m_Size; |