diff --git a/mystic/bbs_ansi_help.pas b/mystic/bbs_ansi_help.pas index bccea28..8eff69d 100644 --- a/mystic/bbs_ansi_help.pas +++ b/mystic/bbs_ansi_help.pas @@ -59,6 +59,16 @@ Uses m_Strings, bbs_Core; +Constructor TAnsiMenuHelp.Create; +Begin + Inherited Create; +End; + +Destructor TAnsiMenuHelp.Destroy; +Begin + Inherited Destroy; +End; + Function TAnsiMenuHelp.StripLinks (Str: String) : String; Var A : Byte; @@ -83,15 +93,6 @@ Begin Result := Str; End; -Constructor TAnsiMenuHelp.Create; -Begin - Inherited Create; -End; - -Destructor TAnsiMenuHelp.Destroy; -Begin - Inherited Destroy; -End; Function TAnsiMenuHelp.ReadKeywordData : Boolean; Var @@ -439,4 +440,4 @@ Begin Box.Free; End; -End. +End. \ No newline at end of file