From eeccc8cc93bb30ec1406669ae7837341a3733478 Mon Sep 17 00:00:00 2001 From: mysticbbs Date: Sat, 18 Feb 2012 01:52:13 -0500 Subject: [PATCH] Code cleanup --- mystic/bbs_ansi_help.pas | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) 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