Selaa lähdekoodia

* fixed compilation broken by rename of unit unzip to unzip51g

git-svn-id: trunk@13989 -
Tomas Hajny 15 vuotta sitten
vanhempi
commit
05346b4ee3
1 muutettua tiedostoa jossa 2 lisäystä ja 2 poistoa
  1. 2 2
      packages/unzip/src/unzipdll.pp

+ 2 - 2
packages/unzip/src/unzipdll.pp

@@ -52,7 +52,7 @@ uses
      Windows,
  {$ENDIF WIN32}
 {$ENDIF OS2}
- Unzip, Dos;
+ Unzip51g, Dos;
 
 type
  UzpMainFunc = function (ArgC: longint; var ArgV: TArgV): longint; cdecl;
@@ -237,6 +237,6 @@ begin
   WriteLn ('under some conditions (e.g. for long names and drives not supporting them).');
   Write (#13#10'Do you want to continue now (y/N)? ');
   ReadLn (C);
-  if UpCase (C) = 'Y' then FileUnzipEx := TFileUnzipEx (@Unzip.FileUnzipEx) else Halt (255);
+  if UpCase (C) = 'Y' then FileUnzipEx := TFileUnzipEx (@Unzip51g.FileUnzipEx) else Halt (255);
  end;
 end.