Compile Time Changes

CatalogTocLimbBuilder changes

We have removed the field info field from CatalogTocLimbBuilder. You can get relevant information from code and versionCode fields.

Old: private DsSqlImportActiveCatsInfo info : public readable;
New: private str code : public readable;
New: private str versionCode : public readable;

DataCatalog changes

The following methods with bool retDibImage=true have been removed. DibImage are now used by default for performance reasons.

Old: extend public Image getThumbImage(Url url, sizeI size=sizeI(),
                                       DsCommunicationCB callback=null,
                                       int priority=2, bool retDibImage=false) {
New: extend public Image getThumbImage(Url url, sizeI size=sizeI(),
                                       DsCommunicationCB callback=null,
                                       int priority=2) {

Old: extend public Image getThumbImage(DsiPData data, sizeI size=sizeI(),
                                       DsCommunicationCB callback=null,
                                       bool useCache=false, int priority=2, bool retDibImage=false) {
New: extend public Image getThumbImage(DsiPData data, sizeI size=sizeI(),
                                       DsCommunicationCB callback=null,
                                       bool useCache=false, int priority=2) {