diff options
-rw-r--r-- | plugins/DbEditorPP/src/exportimport.cpp | 1 | ||||
-rw-r--r-- | plugins/DbEditorPP/src/moduletree.cpp | 4 |
2 files changed, 2 insertions, 3 deletions
diff --git a/plugins/DbEditorPP/src/exportimport.cpp b/plugins/DbEditorPP/src/exportimport.cpp index 4c978e28f2..84f0c188dd 100644 --- a/plugins/DbEditorPP/src/exportimport.cpp +++ b/plugins/DbEditorPP/src/exportimport.cpp @@ -337,7 +337,6 @@ HANDLE CheckNewContact(char *myProto, char *uid, char *myName) while (hContact)
{
- //szProto = GetContactProto(hContact);
if (DBGetContactSettingStringStatic(hContact, "Protocol", "p", szProto, 256))
{
if (!mir_strcmp(szProto, myProto))
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);
}
|