diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-03-22 16:03:33 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-03-22 16:03:33 +0000 |
commit | 901f3f76bc48614ffca98cacf98afd0b1967139f (patch) | |
tree | 0be2927417125e8ee0dac23888aaa4a663ed561c /editeng | |
parent | 3f50dfa1aa99039fa65a3c55cc619a3f35873e66 (diff) |
coverity#736772 Dereference before null check
Change-Id: Idf973cb888c7ac7a3e33aa2fdec0e25515b1feca
Diffstat (limited to 'editeng')
-rw-r--r-- | editeng/source/editeng/impedit.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editeng/source/editeng/impedit.cxx b/editeng/source/editeng/impedit.cxx index ccb72f0820e3..c4ff0736eaa2 100644 --- a/editeng/source/editeng/impedit.cxx +++ b/editeng/source/editeng/impedit.cxx @@ -1563,7 +1563,7 @@ void ImpEditView::dragGestureRecognized(const ::com::sun::star::datatransfer::dn GetEditSelection() = aCopySel; DrawSelection(); sal_Bool bGotoCursor = DoAutoScroll(); - sal_Bool bForceCursor = ( pDragAndDropInfo ? sal_False : sal_True ) && !pEditEngine->pImpEditEngine->IsInSelectionMode(); + sal_Bool bForceCursor = sal_False; ShowCursor( bGotoCursor, bForceCursor ); } else if ( IsBulletArea( aMousePos, &nPara ) ) |