mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-06 18:24:26 +08:00
Issue #74: remove no longer used hackish helper function GetColumnDefaultType()
This commit is contained in:
@ -331,7 +331,6 @@ type
|
||||
function StringListCompareAnythingAsc(List: TStringList; Index1, Index2: Integer): Integer;
|
||||
function StringListCompareAnythingDesc(List: TStringList; Index1, Index2: Integer): Integer;
|
||||
function StringListCompareByValue(List: TStringList; Index1, Index2: Integer): Integer;
|
||||
function GetColumnDefaultType(var Text: String): TColumnDefaultType;
|
||||
function GetImageLinkTimeStamp(const FileName: string): TDateTime;
|
||||
function IsEmpty(Str: String): Boolean;
|
||||
function IsNotEmpty(Str: String): Boolean;
|
||||
@ -2309,13 +2308,6 @@ begin
|
||||
end;
|
||||
|
||||
|
||||
function GetColumnDefaultType(var Text: String): TColumnDefaultType;
|
||||
begin
|
||||
Result := TColumnDefaultType(MakeInt(Copy(Text, 1, 1)));
|
||||
Text := Copy(Text, 2, Length(Text)-1);
|
||||
end;
|
||||
|
||||
|
||||
{**
|
||||
Return compile date/time from passed .exe name
|
||||
Code taken and modified from Michael Puff
|
||||
|
Reference in New Issue
Block a user