Skip to main content

Migration Guide

Following an overview about interface changes between Candera V3.0.4 and Candera V3.1.0.

Description Candera V3.0.4 Candera V3.1.0
Deprecated DynamicPropertyHost::BrowseableForDescendants, replaced with BrowsableForDescendants
            DynamicPropertyHost::BrowseableForDescendants
            DynamicPropertyHost::BrowsableForDescendants
Getter for Localizer changed to SharedPointer
Globalization::GlobalizationCultureManager::GetInstance().SetLocalizer(&Globalization::Internal::DefaultLocalizer::GetInstance());
Globalization::GlobalizationCultureManager::GetInstance().SetLocalizer(Globalization::Localizer::SharedPointer(&Globalization::Internal::DefaultLocalizer::GetInstance()));
Setter for Localizer changed to SharedPointer
Localizer* localizer = GlobalizationCultureManager::GetInstance().GetLocalizer();
if (localizer != 0) {
...
Localizer::SharedPointer localizer = GlobalizationCultureManager::GetInstance().GetLocalizer();
if (!localizer.PointsToNull()) {
...