CHG: Routine Owlet update [owlnext:code:r8872].
CHG: Owlet: Eliminated TUIFace.
CHG: Owlet: Eliminated TUIPart, obsoleted by TDC::DrawFrameControl [r5451].
CHG: Owlet: Removed TUIHandle (not used, obsolete).
CHG: Routine Owlet update [owlnext:code:r8869].
CHG: Owlet: Eliminated TDib and TDibDC, for the sake of simplicity.
Here's a quick user guide: Retrieving a setting int fontSize = GetApplication()->GetSetting("Font.Size", 11); The second argument 11 is the default value, returned if the setting is not set. Note that the type of the return value depends on the type of the default value. If you don't provide a default value, and the desired type is not owl::tstring, you have to specify the type as a template argument. In this case the type's default value is used. TSize windowSize = GetApplication()->GetSetting<TSize>("Window.Size");...
This issue has been fixed on the trunk [r8858] (reverted and redone in [r8862]), and the fix has been merged into Owlet [r8859].