summaryrefslogtreecommitdiff
path: root/plugins/MirandaG15/src/LCDFramework
diff options
context:
space:
mode:
authorTobias Weimer <wishmaster51@googlemail.com>2015-10-04 16:04:25 +0000
committerTobias Weimer <wishmaster51@googlemail.com>2015-10-04 16:04:25 +0000
commitc7bb55b7586eeb85258759dd71c2a1012d772556 (patch)
tree729c53830fc725fbcd32aec08df65e0550063325 /plugins/MirandaG15/src/LCDFramework
parent7db5dec75a13047e90ab9acafc5c5acc06223b60 (diff)
MirandaG15:
- fixed group chat messages (broken in r14971) - minor cleanup, leaks fixed, etc... git-svn-id: http://svn.miranda-ng.org/main/trunk@15508 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MirandaG15/src/LCDFramework')
-rw-r--r--plugins/MirandaG15/src/LCDFramework/CLCDList.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/MirandaG15/src/LCDFramework/CLCDList.h b/plugins/MirandaG15/src/LCDFramework/CLCDList.h
index 0f7006d46d..93284ba71a 100644
--- a/plugins/MirandaG15/src/LCDFramework/CLCDList.h
+++ b/plugins/MirandaG15/src/LCDFramework/CLCDList.h
@@ -400,7 +400,8 @@ public:
delete *iter;
m_Entrys.erase(iter);
- m_pRoot->UpdateEntryCount();
+ if (m_pRoot)
+ m_pRoot->UpdateEntryCount();
return;
}
}