TeeImport97 would not compile in Delphi 7 with Indy 10
I changed the following in procedure procedure TDataImport.ImportFromURL(const AURL: String);
{$IFDEF D9}
LHandler : TIdSSLIOHandlerSocketOpenSSL;
{$ELSE}
{$IFDEF D7}
// { JJD - Change for latest Indy } LHandler : TIdSSLIOHandlerSocket;
LHandler : TIdSSLIOHandlerSocketOpenSSL;
{$ENDIF}
{$IFDEF D9}
LHandler:=TIdSSLIOHandlerSocketOpenSSL.Create(nil);
{$ELSE}
// { JJD - Change for latest Indy } LHandler:=TIdSSLIOHandlerSocket.Create(nil);
LHandler:=TIdSSLIOHandlerSocketOpenSSL.Create(nil);
{$ENDIF}
Compile TeeImport97 Delphi 7 Indy 10
-
- Guru
- Posts: 1603
- Joined: Fri Nov 15, 2002 12:00 am
Re: Compile TeeImport97 Delphi 7 Indy 10
Thank you very much for reporting this to us. I have added it to our issue tracking system with id=1892.
Best Regards,
Christopher Ireland / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |