View | Details | Raw Unified | Return to issue 70064
Collapse All | Expand All

(-)openoffice.org.orig/sc/source/ui/app/inputhdl.cxx (+11 lines)
Lines 1344-1349 Link Here
1344
	return pTopView ? pTopView : pTableView;
1355
	return pTopView ? pTopView : pTableView;
1345
}
1356
}
1346
1357
1358
bool ScInputHandler::NeedReplaceLastPattern(
1359
	const ScPatternAttr *pOldPat, const ScPatternAttr *pNewPat)
1360
{
1361
	if (pLastPattern == pOldPat)
1362
	{
1363
		pLastPattern = pNewPat;
1364
		return true;
1365
	}
1366
	return false;
1367
}
1368
1347
void ScInputHandler::ForgetLastPattern()
1369
void ScInputHandler::ForgetLastPattern()
1348
{
1370
{
1349
	pLastPattern = NULL;
1371
	pLastPattern = NULL;

Return to issue 70064