Board index » cppbuilder » improper generation of .pas "class function"
Relaxin
![]() CBuilder Developer |
Relaxin
![]() CBuilder Developer |
improper generation of .pas "class function"2005-05-03 03:19:03 PM cppbuilder11 qc.borland.com/wc/qcmain.aspx I just bought BCB 6 Pro /SP4 and right from the start, ran into this bug. Has anyone found a workaround for this? Thanks |
Craig Farrell
![]() CBuilder Developer |
2005-05-04 02:02:44 AM
Re:improper generation of .pas "class function"
Hi,
Relaxin wrote: Quoteqc.borland.com/wc/qcmain.aspx TMetaClass param but this code is missing in BCB6: //BCB5 code: /* virtual class method */ virtual bool __fastcall IsBlob() { return IsBlob(__classid(TBlobField)); } #pragma option pop /* class method */ static bool __fastcall IsBlob(TMetaClass* vmt); //BCB6 code: /* virtual class method */ virtual bool __fastcall IsBlob(TMetaClass* vmt); --Craig |
Relaxin
![]() CBuilder Developer |
2005-05-04 02:29:28 AM
Re:improper generation of .pas "class function"
No, it just regenerates the header file and overwrites your changes.
This makes it unusable for some component packs. ughhhhh!!! If it's not one thing it's another with Borland!! "Craig Farrell" < XXXX@XXXXX.COM >wrote in message QuoteHi, {smallsort} |
Craig Farrell
![]() CBuilder Developer |
2005-05-04 03:12:51 AM
Re:improper generation of .pas "class function"
Hi,
QuoteNo, it just regenerates the header file and overwrites your changes. the .hpp will stop being regenerated. Or you could change your calls, e.g. if( Table1Graphic->IsBlob(__classid(TBlobField)) ) --Craig |