Andrew Bachmann <shatty@xxxxxxxxxxxxxxxxxxxxx> wrote: > fixed improper padding removal. the addition of Scale() required > one non-virtual function to be removed. apparently the private > function > "removeFromList" was removed. however, _ReservedView2() was also > incorrectly commented out. this caused obos stylededit to fail to > work, > which is how I found this. I have now tested it with this version > and it > works I would be surprised if you had to remove anything when adding a standard member function. You only have to reserve space in a) the object (reserved data fields) b) the vtable (reserved virtual functions) You theoretically can add new methods at will. So, if removeFromList() was removed, there was no need to do that just because Scale() was added to this class. Adios... Axel.