Changeset 6283 for trunk/qt4-gui/src/contactlist/contactgroup.h
- Timestamp:
- 06/14/08 03:47:03 (6 months ago)
- Files:
-
- 1 modified
-
trunk/qt4-gui/src/contactlist/contactgroup.h (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/qt4-gui/src/contactlist/contactgroup.h
r6200 r6283 29 29 #include "contactlist.h" 30 30 31 class LicqGroup; 32 31 33 namespace LicqQtGui 32 34 { … … 50 52 * @param name Group name 51 53 */ 52 ContactGroup(unsigned short id, QString name); 54 ContactGroup(unsigned short id, QString name = QString()); 55 56 /** 57 * Constructor, creates an empty group 58 * 59 * @param group Group object from daemon 60 */ 61 ContactGroup(const LicqGroup* group); 53 62 54 63 /** … … 157 166 virtual bool setData(const QVariant& value, int role = ContactListModel::NameRole); 158 167 168 /** 169 * Update sort key for this group from daemon 170 */ 171 void updateSortKey(); 172 159 173 signals: 160 174 /** … … 171 185 unsigned short myGroupId; 172 186 QString myName; 173 QStringmySortKey;187 unsigned short mySortKey; 174 188 int myEvents; 175 189 QList<ContactUser*> myUsers;
