Short Description: Qt4 Acct View: Acct item order not from model file. Bug Number: n/a Release notes (y/n): no For Release Nums: 6.1 --------------------------- Accounting/AccountTable.cpp --------------------------- Qt4 Acct View: Acct item order not loaded from model file. New Qt4 Accounting View PROBLEM: On model load, Account graphical item order was initialized to alphabetical rather than the custom order stored in the model file. The "display position" of an Account is encoded as an integer property, but is serialized (e.g. in model files) simply as the order in which the Account record occurs within its containing SimObj. The old Qt3-implemented Accounting View depended on the view being instantiated during ALL account creations. Item creation was driven from Account creation notifications. The new Qt4-implemented Accounting View INSTEAD queries the list of Accounts from each SimObj. SimObj stores the list of Accounts in an AccountTable. AccountTable is built from Account creation notifications -- so the "display position" COULD HAVE BEEN -- BUT WASN'T -- encoded into each Account during AccountTable construction -- Now it is. See method AccountTable::addAccount (Account*, SimObj*). ---