From 3f599390fe0473a1072bbab471d2b3dbce09c356 Mon Sep 17 00:00:00 2001 From: User4martin Date: Sun, 15 Feb 2015 22:46:54 +0000 Subject: [PATCH] Spelling --- Samples/Debug/ide_editor.pas | 4 ++-- Samples/IDE/ide_editor.pas | 4 ++-- Samples/Import/fMain.pas | 4 ++-- Samples/Kylix/fMain.pas | 4 ++-- Samples/TestApp/fMain.pas | 4 ++-- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Samples/Debug/ide_editor.pas b/Samples/Debug/ide_editor.pas index 14fcdce..0179a3d 100644 --- a/Samples/Debug/ide_editor.pas +++ b/Samples/Debug/ide_editor.pas @@ -142,8 +142,8 @@ var resourcestring STR_TEXT_NOTFOUND = 'Text not found'; STR_UNNAMED = 'Unnamed'; - STR_SUCCESSFULLY_COMPILED = 'Succesfully compiled'; - STR_SUCCESSFULLY_EXECUTED = 'Succesfully executed'; + STR_SUCCESSFULLY_COMPILED = 'Successfully compiled'; + STR_SUCCESSFULLY_EXECUTED = 'Successfully executed'; STR_RUNTIME_ERROR='[Runtime error] %s(%d:%d), bytecode(%d:%d): %s'; //Birb STR_FORM_TITLE = 'Editor'; STR_FORM_TITLE_RUNNING = 'Editor - Running'; diff --git a/Samples/IDE/ide_editor.pas b/Samples/IDE/ide_editor.pas index 46442ab..fe21209 100644 --- a/Samples/IDE/ide_editor.pas +++ b/Samples/IDE/ide_editor.pas @@ -142,8 +142,8 @@ var resourcestring STR_TEXT_NOTFOUND = 'Text not found'; STR_UNNAMED = 'Unnamed'; - STR_SUCCESSFULLY_COMPILED = 'Succesfully compiled'; - STR_SUCCESSFULLY_EXECUTED = 'Succesfully executed'; + STR_SUCCESSFULLY_COMPILED = 'Successfully compiled'; + STR_SUCCESSFULLY_EXECUTED = 'Successfully executed'; STR_RUNTIME_ERROR='[Runtime error] %s(%d:%d), bytecode(%d:%d): %s'; //Birb STR_FORM_TITLE = 'Editor'; STR_FORM_TITLE_RUNNING = 'Editor - Running'; diff --git a/Samples/Import/fMain.pas b/Samples/Import/fMain.pas index 9a77f50..3679220 100644 --- a/Samples/Import/fMain.pas +++ b/Samples/Import/fMain.pas @@ -223,7 +223,7 @@ begin x1.AllowNoEnd := true; if x1.Compile(s) then begin - Outputtxt('Succesfully compiled'); + Outputtxt('Successfully compiled'); xpre.AdjustMessages(x1); OutputMsgs; if not x1.GetOutput(s) then @@ -412,7 +412,7 @@ begin x1.OnUses := MyOnUses; if x1.Compile(s) then begin - Memo2.Lines.Add('Succesfully compiled'); + Memo2.Lines.Add('Successfully compiled'); xpre.AdjustMessages(x1); OutputMsgs; if not x1.GetOutput(s) then diff --git a/Samples/Kylix/fMain.pas b/Samples/Kylix/fMain.pas index b8ccae2..49e8e3e 100644 --- a/Samples/Kylix/fMain.pas +++ b/Samples/Kylix/fMain.pas @@ -142,7 +142,7 @@ begin x1.OnExternalProc := DllExternalProc; if x1.Compile(Memo1.Text) then begin - Outputtxt('Succesfully compiled'); + Outputtxt('Successfully compiled'); OutputMsgs; if not x1.GetOutput(s) then begin @@ -306,7 +306,7 @@ begin x1.OnUses := MyOnUses; if x1.Compile(Memo1.Text) then begin - Memo2.Lines.Add('Succesfully compiled'); + Memo2.Lines.Add('Successfully compiled'); OutputMsgs; if not x1.GetOutput(s) then begin diff --git a/Samples/TestApp/fMain.pas b/Samples/TestApp/fMain.pas index e27f06c..5c5c82c 100644 --- a/Samples/TestApp/fMain.pas +++ b/Samples/TestApp/fMain.pas @@ -128,12 +128,12 @@ begin if PSScript.Compile then begin OutputMessages; - Memo2.Lines.Add('Compiled succesfully'); + Memo2.Lines.Add('Compiled successfully'); if not PSScript.Execute then begin Memo1.SelStart := PSScript.ExecErrorPosition; Memo2.Lines.Add(PSScript.ExecErrorToString +' at '+Inttostr(PSScript.ExecErrorProcNo)+'.'+Inttostr(PSScript.ExecErrorByteCodePosition)); - end else Memo2.Lines.Add('Succesfully executed'); + end else Memo2.Lines.Add('Successfully executed'); end else begin OutputMessages;