Page 1 of 1

TTextblock Class Conflict

Posted: Tue Jun 27, 2017 3:31 pm
by 16580573
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

Re: TTextblock Class Conflict

Posted: Fri Jun 30, 2017 9:53 am
by yeray
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.

Re: TTextblock Class Conflict

Posted: Mon Sep 18, 2017 9:06 am
by 16579113
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

Re: TTextblock Class Conflict

Posted: Wed Sep 20, 2017 1:59 pm
by yeray
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);