Show
Ignore:
Timestamp:
03/02/08 23:12:42 (9 months ago)
Author:
flynd
Message:

Removed some compile warnings about hidden virtual functions and unused function.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/qt4-gui/src/contactlist/sortedcontactlistproxy.h

    r5837 r6078  
    6464  void sort(int column = 0, int role = Qt::DisplayRole, Qt::SortOrder order = Qt::AscendingOrder); 
    6565 
     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 
    6677private: 
    6778  /**