Example #1
0
void SearchReplace::slotReplace()
{
//	if (m_itemMode)
//		m_doc->view()->slotDoCurs(false);
	slotDoReplace();
	if (m_itemMode)
	{
//		m_doc->view()->slotDoCurs(true);
		m_item->update();
	}
}
Example #2
0
void SearchReplace::slotReplace()
{
//	if (SMode)
//		Doc->view()->slotDoCurs(false);
	slotDoReplace();
	if (SMode)
	{
//		Doc->view()->slotDoCurs(true);
		Item->update();
	}
}
Example #3
0
void SearchReplace::slotReplaceAll()
{
	if (m_itemMode)
	{
//		m_doc->view()->slotDoCurs(false);
		m_doc->DoDrawing = false;
	}
	do
	{
		slotDoReplace();
//		slotDoSearch();
	}
	while (m_notFound);
	if (m_itemMode)
	{
		m_doc->DoDrawing = true;
//		m_doc->view()->slotDoCurs(true);
		m_item->update();
	}
}
Example #4
0
void SearchReplace::slotReplaceAll()
{
	if (SMode)
	{
//		Doc->view()->slotDoCurs(false);
		Doc->DoDrawing = false;
	}
	do
	{
		slotDoReplace();
//		slotDoSearch();
	}
	while (NotFound);
	if (SMode)
	{
		Doc->DoDrawing = true;
//		Doc->view()->slotDoCurs(true);
		Item->update();
	}
}