Names of QR Units changed?

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
GTI
Newbie
Newbie
Posts: 12
Joined: Mon Oct 06, 2014 12:00 am

Names of QR Units changed?

Post by GTI » Thu Oct 09, 2014 5:22 pm

Hello,

After installing Teechart and recompile the teechar packages in have to recompile my QRDESING packages (because I activate the Teechart directive in QRDESIGN.INC I needed to recompile them)

For recompiole the QRD Packages I needed tochange the uses of the units like:

{$IFDEF Teechart}
QrTee,TeeProcs, TeEngine,Chart,Series,TeeShape,ArrowCha,VGanttCh,BubbleCh,
{$ENDIF}

for:

{$IFDEF Teechart}
QrTee,VCLTee.TeeProcs, VCLTee.TeEngine,VCLTee.Chart,VCLTee.Series,VCLTee.TeeShape,VCLTee.ArrowCha,VCLTee.GanttCh,VCLTee.BubbleCh,
{$ENDIF}

In units like QRDCtrls and others, this is just an example. How you can see above, I had to aggregate the VCLTee. prefix, because Chart.dcu wasn't in my Teechart installation. only was VCLTee.Chart.dcu, so I changed it and with the other units I did the same. With this change QRD packages compiles. But, Is this correct?

Thanks.

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

Re: Names of QR Units changed?

Post by Yeray » Fri Oct 10, 2014 10:45 am

Hi,

XE2 introduced the prefixes forcing us to use them. But you can add VCLTee to the "unit scope names" in your project without having to edit every unit using TeeChart:
http://www.teechart.net/support/viewtop ... 277#p61277
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

GTI
Newbie
Newbie
Posts: 12
Joined: Mon Oct 06, 2014 12:00 am

Re: Names of QR Units changed?

Post by GTI » Tue Oct 14, 2014 5:48 pm

Thanks, I did it!

Post Reply