Changeset 6078 for trunk/qt4-gui/src/contactlist
- Timestamp:
- 03/02/08 23:12:42 (9 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/qt4-gui/src/contactlist/sortedcontactlistproxy.h
r5837 r6078 64 64 void sort(int column = 0, int role = Qt::DisplayRole, Qt::SortOrder order = Qt::AscendingOrder); 65 65 66 /** 67 * Same sort as above but with same parameters as base class so we overload 68 * it. Also this sort() has no default values to sovle problems when calls 69 * to sort() would be ambiguous with base sort() accessable. 70 * 71 * @param column Column to sort on 72 * @param order Order to sort 73 */ 74 virtual void sort(int column, Qt::SortOrder order) 75 { sort(column, Qt::DisplayRole, order); } 76 66 77 private: 67 78 /**
