You've already forked lazarus-ccr
Removed, unused code
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@1966 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -24,7 +24,6 @@ interface
|
||||
uses
|
||||
Classes, SysUtils, Dialogs;
|
||||
|
||||
function ReplaceChar(const s: string; ch1: char; ch2: char): string;
|
||||
function CountChar(const s: string; ch: char): integer;
|
||||
procedure Split(const Delimiter: char; Input: string; Strings: TStrings);
|
||||
function NormalizeDate(const Value: string; theValue: TDateTime;
|
||||
@ -34,16 +33,6 @@ function IsValidDateString(const Value: string): boolean;
|
||||
|
||||
implementation
|
||||
|
||||
function ReplaceChar(const s: string; ch1: char; ch2: char): string;
|
||||
var
|
||||
i: integer;
|
||||
begin
|
||||
Result := s;
|
||||
for i := 1 to length(Result) do
|
||||
if Result[i] = ch1 then
|
||||
Result[i] := ch2;
|
||||
end;
|
||||
|
||||
function CountChar(const s: string; ch: char): integer;
|
||||
var
|
||||
i: integer;
|
||||
|
@ -24,7 +24,6 @@ interface
|
||||
uses
|
||||
Classes, SysUtils, Dialogs;
|
||||
|
||||
function ReplaceChar(const s: string; ch1: char; ch2: char): string;
|
||||
function CountChar(const s: string; ch: char): integer;
|
||||
procedure Split(const Delimiter: char; Input: string; Strings: TStrings);
|
||||
function NormalizeDate(const Value: string; theValue: TDateTime;
|
||||
@ -34,16 +33,6 @@ function IsValidDateString(const Value: string): boolean;
|
||||
|
||||
implementation
|
||||
|
||||
function ReplaceChar(const s: string; ch1: char; ch2: char): string;
|
||||
var
|
||||
i: integer;
|
||||
begin
|
||||
Result := s;
|
||||
for i := 1 to length(Result) do
|
||||
if Result[i] = ch1 then
|
||||
Result[i] := ch2;
|
||||
end;
|
||||
|
||||
function CountChar(const s: string; ch: char): integer;
|
||||
var
|
||||
i: integer;
|
||||
|
Reference in New Issue
Block a user