diff options
Diffstat (limited to 'protocols/JabberG/src/jabber_notes.h')
-rw-r--r-- | protocols/JabberG/src/jabber_notes.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/protocols/JabberG/src/jabber_notes.h b/protocols/JabberG/src/jabber_notes.h index 9038c83cb1..b0aea48305 100644 --- a/protocols/JabberG/src/jabber_notes.h +++ b/protocols/JabberG/src/jabber_notes.h @@ -65,7 +65,10 @@ private: bool m_bIsModified;
public:
- CNoteList(): OBJLIST<CNoteItem>(10, CNoteItem::cmp) {}
+ CNoteList() :
+ OBJLIST<CNoteItem>(10, CNoteItem::cmp),
+ m_bIsModified(false)
+ {}
void remove(CNoteItem *p)
{
|