diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2021-08-02 20:01:03 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-08-03 09:27:29 +0200 |
commit | d596bedd1c4aa27549fe9dda5112c67bdfc8c7fb (patch) | |
tree | c4964d22b7f9b89f156be69f80406cb95e3615c9 /svx | |
parent | dbca83e5b90a25be0841a1f4b4ff45b4e5f818cc (diff) |
tools::Long->sal_Int16 in FmXFormShell
m_arrRelativeGridColumn is set from FmFoundRecordInformation.nFieldPos
which is sal_Int16
Change-Id: Ifd3d72f8aa34d0d574d1b9fc2cbe755c32952b4b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/119911
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/inc/fmshimp.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/inc/fmshimp.hxx b/svx/source/inc/fmshimp.hxx index f347e6cd2e7b..295a73c43ecb 100644 --- a/svx/source/inc/fmshimp.hxx +++ b/svx/source/inc/fmshimp.hxx @@ -180,7 +180,7 @@ class UNLESS_MERGELIBS(SVXCORE_DLLPUBLIC) FmXFormShell final : public FmXFormShe // since I want to mark an SdrObject when searching for the treatment of the "found", // I get all relevant objects before yanking up of the search dialog // (the array is thus only valid during the search process) - std::vector<tools::Long> m_arrRelativeGridColumn; + std::vector<sal_Int16> m_arrRelativeGridColumn; ::osl::Mutex m_aMutex; ImplSVEvent * m_nInvalidationEvent; |