summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGraeme Geldenhuys <graeme@mastermaths.co.za>2012-09-26 22:18:29 +0100
committerGraeme Geldenhuys <graeme@mastermaths.co.za>2012-09-26 22:18:29 +0100
commit684aa545035b5f13198ce6836a0b324459469558 (patch)
tree19faa31726be360c0ed4c196156401124034b5fa /src
parent5fde9dfac338c439f9adbf6bc92f2610d9954264 (diff)
downloadfpGUI-684aa545035b5f13198ce6836a0b324459469558.tar.xz
fixes spelling mistake in code comment.
Diffstat (limited to 'src')
-rw-r--r--src/corelib/fpg_base.pas4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/corelib/fpg_base.pas b/src/corelib/fpg_base.pas
index 3c9e69d9..32e9eaaa 100644
--- a/src/corelib/fpg_base.pas
+++ b/src/corelib/fpg_base.pas
@@ -74,7 +74,7 @@ type
// If you have to convert this to an Integer, mrNone = 0 etc.
TfpgModalResult = (mrNone, mrOK, mrCancel, mrYes, mrNo, mrAbort, mrRetry,
- mrIgnore, mrAll, mrNoToAll, mrYesToAll);
+ mrIgnore, mrAll, mrNoToAll, mrYesToAll, mrHelp);
TfpgDropAction = (daIgnore, daCopy, daMove, daLink, daAsk);
TfpgDropActions = set of TfpgDropAction;
@@ -1381,7 +1381,7 @@ end;
procedure TfpgWindowBase.AfterConstruction;
begin
inherited AfterConstruction;
- { Here is a neater way by using RTTI to set default property values all
+ { There is a neater way by using RTTI to set default property values all
automatically. No need to duplicate the efforts and manually set the
property default values in the constructor. This code is now the same for
each TfpgWindowBase descendant (which includes GUI widgets) }