diff options
author | Caolán McNamara <caolan.mcnamara@collabora.com> | 2024-08-26 21:02:36 +0100 |
---|---|---|
committer | Caolán McNamara <caolan.mcnamara@collabora.com> | 2024-08-28 13:12:51 +0200 |
commit | 25552416c07a0841c32d71663cf2df75cbd174ea (patch) | |
tree | f203f5817de85f28ec7ccb85fd0b147bcc82b9b0 /dbaccess | |
parent | 17181dfd0ff3abed78f00b5812e9652a8344bab9 (diff) |
cid#1606904 silence Overflowed constant
and
cid#1606871 silence Overflowed constant
Change-Id: Ibfa7b63bf6879b24dc28df9d889c6692ec5a4e23
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/172512
Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
Tested-by: Caolán McNamara <caolan.mcnamara@collabora.com>
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/ui/browser/sbagrid.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dbaccess/source/ui/browser/sbagrid.cxx b/dbaccess/source/ui/browser/sbagrid.cxx index 31bcf1ebfa6a..2657c9e741ff 100644 --- a/dbaccess/source/ui/browser/sbagrid.cxx +++ b/dbaccess/source/ui/browser/sbagrid.cxx @@ -924,7 +924,7 @@ void SbaGridControl::StartDrag( sal_Int8 _nAction, const Point& _rPosPixel ) // my laziness says 'do it here'...) sal_Int32 nRow = GetRowAtYPosPixel(_rPosPixel.Y()); sal_uInt16 nColPos = GetColumnAtXPosPixel(_rPosPixel.X()); - sal_uInt16 nViewPos = (nColPos == BROWSER_INVALIDID) ? sal_uInt16(-1) : nColPos-1; + sal_uInt16 nViewPos = (nColPos == BROWSER_INVALIDID) ? sal_uInt16(-1) : sal_uInt16(nColPos-1); // 'the handle column' and 'no valid column' will both result in a view position of -1 ! bool bCurrentRowVirtual = IsCurrentAppending() && IsModified(); |