From b3df7242d18b269b0a651d6bc1812d6cff093d2f Mon Sep 17 00:00:00 2001 From: George Hazan Date: Sat, 6 Apr 2013 14:34:37 +0000 Subject: fix for expanding contacts' tree in Dbeditor in the service mode git-svn-id: http://svn.miranda-ng.org/main/trunk@4331 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/DbEditorPP/src/moduletree.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins/DbEditorPP/src/moduletree.cpp') diff --git a/plugins/DbEditorPP/src/moduletree.cpp b/plugins/DbEditorPP/src/moduletree.cpp index 4c6d4a0e47..f1e4f348c7 100644 --- a/plugins/DbEditorPP/src/moduletree.cpp +++ b/plugins/DbEditorPP/src/moduletree.cpp @@ -27,8 +27,8 @@ int doContacts(HWND hwnd2Tree,HTREEITEM contactsRoot,ModuleSettingLL *modlist, H tvi.item.cChildren = 1; while (hContact && hwnd2mainWindow) { // break after null contact - char *szProto = GetContactProto(hContact); - if (szProto) { + char szProto[100]; + if (DBGetContactSettingStringStatic(hContact, "Protocol", "p", szProto, SIZEOF(szProto))) { icon = GetProtoIcon(szProto); loaded = (icon != DEF_ICON); } -- cgit v1.2.3