diff options
| author | Kevin Smith <git@kismith.co.uk> | 2010-08-20 16:03:24 (GMT) | 
|---|---|---|
| committer | Kevin Smith <git@kismith.co.uk> | 2010-08-20 16:03:24 (GMT) | 
| commit | 84835e9ed81d215511a0393d371ff9bf3ddf4953 (patch) | |
| tree | 2c676478be904edbe1a6dc3c6f82c79d20edb1bf /Swift/QtUI/ChatList/ChatListItem.h | |
| parent | 54859f64709f297b97bb48367759479d58f991fe (diff) | |
| download | swift-contrib-84835e9ed81d215511a0393d371ff9bf3ddf4953.zip swift-contrib-84835e9ed81d215511a0393d371ff9bf3ddf4953.tar.bz2  | |
Sort bookmark list.
Resolves: #454
Diffstat (limited to 'Swift/QtUI/ChatList/ChatListItem.h')
| -rw-r--r-- | Swift/QtUI/ChatList/ChatListItem.h | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/Swift/QtUI/ChatList/ChatListItem.h b/Swift/QtUI/ChatList/ChatListItem.h index 57a85da..e7be614 100644 --- a/Swift/QtUI/ChatList/ChatListItem.h +++ b/Swift/QtUI/ChatList/ChatListItem.h @@ -7,6 +7,7 @@  #pragma once  #include <QVariant> +#include <qdebug.h>  namespace Swift {  	class ChatListGroupItem; @@ -16,7 +17,7 @@ namespace Swift {  			virtual ~ChatListItem() {}  			ChatListGroupItem* parent() {return parent_;}; -			virtual QVariant data(int role) = 0; +			virtual QVariant data(int role) const = 0;  		private:  			ChatListGroupItem* parent_;  | 
 Swift