Renamed the findf() and findb() member functions to find() and rfind(), respectively.
Added two new overloads for FXObjectList's insert() member function. The new functions allow you to insert a list of objects at a specified position in the list. Additionally, all three of the overloaded versions of insert() return a reference to the object list.
Added two new overloads for FXObjectList's prepend() member function. The new functions allow you to prepend a list of objects to the front of the list. Additionally, all three of the overloaded versions of prepend() return a reference to the object list.
Added two new overloads for FXObjectList's append() member function. The new functions allow you to append a list of objects to the end of the list. Additionally, all three of the overloaded versions of append() return a reference to the object list.
Added two new overloads for FXObjectList's replace() member function. The new functions allow you to replace one sequence of objects in the object list with another. Additionally, all three of the overloaded versions of replace() return a reference to the object list.
Added the overloaded member function assign() to FXObjectList. The overloaded versions of assign() can be used to assign either a single object or a list of objects to an object list.
The clear() member function for FXObjectList now returns a reference to the object list.
The overloaded size() member functions for the FXObjectList class, which were used to get or set the capacity of an object list, have been removed.