Welcome, Guest
Username: Password: Remember me
General discussions, feature requests for CodeTyphon Project and discussions that don't fit in any of the other specific CodeTyphon forum categories.
  • Page:
  • 1

TOPIC:

CT 2.80 - Small Correction 11 years 8 months ago #2347

  • Adriano Soares
  • Adriano Soares's Avatar Topic Author
  • Offline
  • Junior Member
  • Junior Member
  • Posts: 40
  • Thank you received: 9
Sir

First of all, I can see the dawning of the most powerful Programming Studio on this planet. Congratulations for your team, they are the master of this great work.

I work with CT 2.70 and today I tried to use CT 2.80.
After the first shine of glory, I needed to do a small correction in CT 2.80.

Is just copy this part of code of CT 2.70 to CT 2.80 and thats ok. After this, the error do not occurred anymore.

C:\codetyphon\lazarus\components\pl_lclextensions\source\delphicompat.pas

CT 2.70

{$i delphicompat.inc}

initialization
FTimerList := TTimerList.Create;
{$ifdef DEBUG_DELPHICOMPAT}
Logger := TLCLLogger.Create;
Logger.Channels.Add(TFileChannel.Create('delphicompat.log'));
Logger.ActivateClasses := [lcInfo,lcStack];
Logger.MaxStackCount := 3;
{$endif}

finalization
FTimerList.Free;
{$ifdef DEBUG_DELPHICOMPAT}
Logger.Free;
{$endif}
end.dif}
end.

CT 2.80

{$i delphicompat.inc}

initialization

{$ifdef DEBUG_DELPHICOMPAT} // 9999
FTimerList := TTimerList.Create;
Logger := TLCLLogger.Create;
Logger.Channels.Add(TFileChannel.Create('delphicompat.log'));
Logger.ActivateClasses := [lcInfo,lcStack];
Logger.MaxStackCount := 3;
{$endif}

finalization
{$ifdef DEBUG_DELPHICOMPAT} // 9999
FTimerList.Free;
Logger.Free;
{$endif}
end.

Please Log in or Create an account to join the conversation.

CT 2.80 - Small Correction 11 years 8 months ago #2348

  • Sternas Stefanos
  • Sternas Stefanos's Avatar
  • Offline
  • Moderator
  • Moderator
  • Ex Pilot, M.Sc, Ph.D
  • Posts: 4508
  • Thank you received: 1100
Thanks Sir
we put your code in the lab version
PilotLogic Architect and Core Programmer

Please Log in or Create an account to join the conversation.

CT 2.80 - Small Correction 11 years 8 months ago #2354

  • Aleksandar
  • Aleksandar's Avatar
  • Offline
  • Junior Member
  • Junior Member
  • Posts: 150
  • Thank you received: 31
Since I also have one small correction for CT 2.80 I would not open new topic.

I installed those 3 cross elements:

i386-win32
i386-linux
x86_64-win64


When I tried to compile for win32 I got error Compiler "/usr/codetyphon/fpc/bin/x86_64-linux/ppcx64" does not support target i386-win32

Fix is very simple, you should just replace Compiler path line.

Please replace
/usr/lib/codetyphon/fpc/bin/x86_64-linux/ppcx64

with
/usr/lib/codetyphon/fpc/bin/x86_64-linux/fpc

Please Log in or Create an account to join the conversation.

CT 2.80 - Small Correction 11 years 8 months ago #2356

  • Sternas Stefanos
  • Sternas Stefanos's Avatar
  • Offline
  • Moderator
  • Moderator
  • Ex Pilot, M.Sc, Ph.D
  • Posts: 4508
  • Thank you received: 1100
Thanks Sir
I will put and this at Lab version
PilotLogic Architect and Core Programmer

Please Log in or Create an account to join the conversation.

CT 2.80 - Small Correction 11 years 8 months ago #2367

  • avra
  • avra's Avatar
  • Visitor
  • Visitor
lhelp in CT 2.80 does not remember well it's position and there is a little offset both horizontally and vertically. Using lhelp.exe from CT 2.70 solves the problem.

(CHM IDE help in WinXP)

Please Log in or Create an account to join the conversation.

CT 2.80 - Small Correction 8 years 6 months ago #8347

  • Alexandr
  • Alexandr's Avatar
  • Offline
  • Junior Member
  • Junior Member
  • Posts: 62
  • Thank you received: 2
Problem still exists in 5.50....

I've build for i386-Linix

Please Log in or Create an account to join the conversation.

  • Page:
  • 1