RasmusTidselbak / al-var-helper

6 stars 6 forks source link

Sort Query variable #9

Closed jwikman closed 5 years ago

jwikman commented 5 years ago

A variable of datatype Query ends up in the bottom instead of after other object type variables.

        MyTable: Record "MyTable";
        MyCodeunit: Codeunit "MyCodeunit";
        MyBool: Boolean;
        MyQuery: Query "MyQuery";

Should reorder as

        MyTable: Record "MyTable";
        MyCodeunit: Codeunit "MyCodeunit";
        MyQuery: Query "MyQuery";
        MyBool: Boolean;
RasmusTidselbak commented 5 years ago

Fixed in next release