diff options
author | George Hazan <george.hazan@gmail.com> | 2015-04-11 23:02:48 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-04-11 23:02:48 +0000 |
commit | 3e1583072445a97fbd9dd223d8c8b702013ae1d6 (patch) | |
tree | 9beadf45e5c96812d0f9a2a10c94a6cc256f94d3 /protocols/JabberG/src/jabber_notes.h | |
parent | 27c63813af1433d827335b5d1d34c2b70eddeb6b (diff) |
minor fixes, code cleaning etc
git-svn-id: http://svn.miranda-ng.org/main/trunk@12773 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
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)
{
|