Kaydet (Commit) 3fc6fc2f authored tarafından Oliver-Rainer Wittmann's avatar Oliver-Rainer Wittmann Kaydeden (comit) Caolán McNamara

Related: #i33737# correction: assure the selections does not...

start/end inside a table while end/start of the selection is outside the table

(cherry picked from commit 382814cc)

Conflicts:
	sw/source/core/crsr/swcrsr.cxx

Change-Id: Ibcbd9b18538ce04abfae11e75b30d6897a62e268
üst f6f2ee5b
......@@ -448,10 +448,9 @@ sal_Bool SwCursor::IsSelOvr( int eFlags )
}
}
const SwTableNode* pPtNd = GetPoint()->nNode.GetNode().FindTableNode();
const SwTableNode* pMrkNd = GetMark()->nNode.GetNode().FindTableNode();
// both in no or in same table node
const SwTableNode* pPtNd = pNd->FindTableNode();
const SwTableNode* pMrkNd = pNd->FindTableNode();
// beide in keinem oder beide im gleichen TableNode
if( ( !pMrkNd && !pPtNd ) || pPtNd == pMrkNd )
return sal_False;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment