|
From: Flávio E. <et...@us...> - 2004-08-31 04:50:35
|
Update of /cvsroot/synedit/SynEdit/Source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4485/Source Modified Files: SynMacroRecorder.pas Log Message: Somewhat better error messages for SynMacroRecorder (ouch. I can hardly believe I wrote those "gems"). Index: SynMacroRecorder.pas =================================================================== RCS file: /cvsroot/synedit/SynEdit/Source/SynMacroRecorder.pas,v retrieving revision 1.30 retrieving revision 1.31 diff -u -d -r1.30 -r1.31 --- SynMacroRecorder.pas 10 Jul 2004 21:38:30 -0000 1.30 +++ SynMacroRecorder.pas 31 Aug 2004 04:50:26 -0000 1.31 @@ -74,8 +74,8 @@ {$ELSE} const {$ENDIF} - sCannotRecord = 'Cannot record macro when recording'; - sCannotPlay = 'Cannot playback macro when recording'; + sCannotRecord = 'Cannot record macro; already recording or playing'; + sCannotPlay = 'Cannot playback macro; already playing or recording'; sCannotPause = 'Can only pause when recording'; sCannotResume = 'Can only resume when paused'; |