[ENHANCEMENT] (Author: Jinhui Yang) Fix macro problem: Find functionality doesn't work in "Run a Macro Multiple Times".

git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository/trunk@1044 f5eea248-9336-0410-98b8-ebc06183d4e3
This commit is contained in:
Don Ho 2013-05-19 16:11:30 +00:00
parent 532275abb0
commit e2e7703241
1 changed files with 1 additions and 3 deletions

View File

@ -1014,9 +1014,7 @@ LRESULT Notepad_plus::process(HWND hwnd, UINT Message, WPARAM wParam, LPARAM lPa
_pEditView->execute(SCI_BEGINUNDOACTION); _pEditView->execute(SCI_BEGINUNDOACTION);
for(;;) for(;;)
{ {
for (Macro::iterator step = m.begin(); step != m.end(); step++) macroPlayback(m);
step->PlayBack(this->_pPublicInterface, _pEditView);
counter++; counter++;
if ( times >= 0 ) if ( times >= 0 )
{ {