TTextblock Class Conflict

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
nader
Newbie
Newbie
Posts: 5
Joined: Thu Mar 23, 2017 12:00 am

TTextblock Class Conflict

Post by nader » Tue Jun 27, 2017 3:31 pm

Hello,

Setting up TeeChart for Delphi 10.2 was failing on my workstation due to a conflict in TTextblock class, it seems there is a class with similar name in TMS Diagram Package, can you add a prefix to your class? I have also contacted TMS.

Regards,
Nader

Yeray
Site Admin
Site Admin
Posts: 9514
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: TTextblock Class Conflict

Post by Yeray » Fri Jun 30, 2017 9:53 am

Hello,

I see this is defined in TeeBlocks. Are you using TeeMaker/Chart3D?
We'll try to add the VCLTee/FMXTee prefix to it, as usually.
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

wvisser
Newbie
Newbie
Posts: 5
Joined: Fri Sep 09, 2016 12:00 am
Contact:

Re: TTextblock Class Conflict

Post by wvisser » Mon Sep 18, 2017 9:06 am

When will the TTextblock class prefix be added? Or has it already been added?
Is it easy to do it yourself in the code?

regards, Wilfried

Yeray
Site Admin
Site Admin
Posts: 9514
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: TTextblock Class Conflict

Post by Yeray » Wed Sep 20, 2017 1:59 pm

Hello Wilfried,

We've added the unit name (TeeBlocks) to every TTextBlock reference in TeeMaker/Chart3D sources to avoid this class conflict.
Ie, this code:

Code: Select all

    result:=TTextBlock.Create(IOwner);
Is now this:

Code: Select all

    result:=TeeBlocks.TTextBlock.Create(IOwner);
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

Post Reply