Skip to content

Commit

Permalink
Fix some small buggers.
Browse files Browse the repository at this point in the history
  • Loading branch information
LongDirtyAnimAlf committed Aug 7, 2021
1 parent dbc546c commit 1c04183
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
Binary file modified fpcupdeluxe.res
Binary file not shown.
4 changes: 2 additions & 2 deletions fpcupdeluxemainform.pas
Original file line number Diff line number Diff line change
Expand Up @@ -487,12 +487,12 @@ procedure TForm1.FormCreate(Sender: TObject);
aFPCTarget:=ReadString('General','fpcVersion','');
if (Length(aFPCTarget)=0) then
begin
aFPCTarget:='stable.gitlab'
aFPCTarget:='stable.gitlab';
end;
aLazarusTarget:=ReadString('General','lazVersion','');
if (Length(aLazarusTarget)=0) then
begin
aFPCTarget:='stable.gitlab'
aFPCTarget:='stable.gitlab';
{$ifdef Haiku}
{$ifdef CPUX86_64}
aLazarusTarget:='trunk.gitlab';
Expand Down
12 changes: 6 additions & 6 deletions fpcuputil.pas
Original file line number Diff line number Diff line change
Expand Up @@ -96,17 +96,15 @@ TNormalUnzipper = class(TObject)
{ TLogger }
TLogger = class(TObject)
private
FLog: TEventLog; //Logging/debug output to file
FLog: TEventLog;
function GetLogFile: string;
procedure SetLogFile(AValue: string);
public
// Write to log and optionally console with seriousness etInfo
procedure WriteLog(Message: string);overload;
// Write to log and optionally console with specified seriousness
procedure WriteLog(EventType: TEventType;Message: string);overload;
property LogFile: string read GetLogFile write SetLogFile ;
constructor Create;
destructor Destroy; override;
procedure WriteLog(Message: string);overload;
procedure WriteLog(EventType: TEventType;Message: string);overload;
property LogFile: string read GetLogFile write SetLogFile;
end;

TBasicDownLoader = Class(TObject)
Expand Down Expand Up @@ -454,7 +452,9 @@ implementation
{$endif}

type
{$ifdef ENABLENATIVE}
TMyFTPSend = class(TFTPSend);
{$endif ENABLENATIVE}

TOnWriteStream = procedure(Sender: TObject; APos: Int64) of object;

Expand Down

0 comments on commit 1c04183

Please sign in to comment.