Compile Time Changes

SelectionFloatingDialog

A small addition of a default argument str loc=callerLoc() to the constructor.

Old: public constructor(Window parent,
                        Font font=systemFont(),
                        Brush brush=null,
                        str label="Dialog",
                        bool initVisible=true,
                        bool noBorder=false) : deprecated {
New: public constructor(Window parent,
                        Font font=systemFont(),
                        Brush brush=null,
                        str label="Dialog",
                        bool initVisible=true,
                        bool noBorder=false,
                        str loc=callerLoc()) { // Added