Page 1 of 1

Names of QR Units changed?

Posted: Thu Oct 09, 2014 5:22 pm
by 16570354
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.

Re: Names of QR Units changed?

Posted: Fri Oct 10, 2014 10:45 am
by yeray
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

Re: Names of QR Units changed?

Posted: Tue Oct 14, 2014 5:48 pm
by 16570354
Thanks, I did it!