diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-02-02 12:41:42 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-02-03 16:04:17 +0100 |
commit | e3308af401013713bbfe27b6df9952586c52f4aa (patch) | |
tree | d498f4a3bfefef5a4c964986cf76d86201ba58e8 /sc/source/ui/view/tabvwsha.cxx | |
parent | a4fbb496ef001d62fce0ad3cdd7a829f99aa182e (diff) |
TypedWhichId in sc
Change-Id: I43558191f65bfb07abfbc92970629d5dd561a04e
Reviewed-on: https://gerrit.libreoffice.org/49141
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc/source/ui/view/tabvwsha.cxx')
-rw-r--r-- | sc/source/ui/view/tabvwsha.cxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sc/source/ui/view/tabvwsha.cxx b/sc/source/ui/view/tabvwsha.cxx index 0a07e52d20f6..266f44aea649 100644 --- a/sc/source/ui/view/tabvwsha.cxx +++ b/sc/source/ui/view/tabvwsha.cxx @@ -650,9 +650,8 @@ void ScTabViewShell::UpdateInputHandler( bool bForce /* = sal_False */, bool bSt if (pDoc->IsTabProtected(nTab)) { - const ScProtectionAttr* pProt = static_cast<const ScProtectionAttr*>( - pDoc->GetAttr( nPosX,nPosY,nTab, - ATTR_PROTECTION)); + const ScProtectionAttr* pProt = pDoc->GetAttr( nPosX,nPosY,nTab, + ATTR_PROTECTION); bHideFormula = pProt->GetHideFormula(); bHideAll = pProt->GetHideCell(); } |