diff options
author | George Hazan <george.hazan@gmail.com> | 2014-01-13 15:19:47 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-01-13 15:19:47 +0000 |
commit | 7f35b5c32df443cf13dbb476c641e01f30db1d6c (patch) | |
tree | 6d8f90bb3e7e3dd41f0fde9e2ac8557a260cb8b4 /plugins/DbEditorPP/src/moduletree.cpp | |
parent | ca03ebb556b09af11c936f1be681323d419efceb (diff) |
encrypted settings are not displayed in dbeditor
git-svn-id: http://svn.miranda-ng.org/main/trunk@7631 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/DbEditorPP/src/moduletree.cpp')
-rw-r--r-- | plugins/DbEditorPP/src/moduletree.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/plugins/DbEditorPP/src/moduletree.cpp b/plugins/DbEditorPP/src/moduletree.cpp index 992bf1733d..bcbc1ac109 100644 --- a/plugins/DbEditorPP/src/moduletree.cpp +++ b/plugins/DbEditorPP/src/moduletree.cpp @@ -11,7 +11,7 @@ int doContacts(HWND hwnd2Tree,HTREEITEM contactsRoot,ModuleSettingLL *modlist, H TVINSERTSTRUCT tvi;
HTREEITEM contact;
ModuleTreeInfoStruct *lParam;
- struct ModSetLinkLinkItem *module;
+ ModSetLinkLinkItem *module;
int count = CallService(MS_DB_CONTACT_GETCOUNT, 0, 0);
int itemscount = 0;
int loaded, i = 0, icon = 0;
@@ -105,7 +105,7 @@ int doContacts(HWND hwnd2Tree,HTREEITEM contactsRoot,ModuleSettingLL *modlist, H tvi.item.lParam = (LPARAM)lParam;
TreeView_InsertItem(hwnd2Tree, &tvi);
}
- module = (struct ModSetLinkLinkItem *)module->next;
+ module = (ModSetLinkLinkItem *)module->next;
}
hItem = findItemInTree(hwnd2Tree, hSelectedContact, SelectedModule);
@@ -127,7 +127,7 @@ void doItems(HWND hwnd2Tree,ModuleSettingLL *modlist, int count) TVITEM item ={0};
HANDLE hContact;
ModuleTreeInfoStruct *lParam;
- struct ModSetLinkLinkItem *module;
+ ModSetLinkLinkItem *module;
char percent[96], title[64];
HWND hwnd = GetParent(hwnd2Tree);
int i = 0;
@@ -177,7 +177,7 @@ void doItems(HWND hwnd2Tree,ModuleSettingLL *modlist, int count) tvi.item.lParam = (LPARAM)lParam;
TreeView_InsertItem(hwnd2Tree, &tvi);
}
- module = (struct ModSetLinkLinkItem *)module->next;
+ module = (ModSetLinkLinkItem *)module->next;
}
}
@@ -370,7 +370,7 @@ void __cdecl PopulateModuleTreeThreadFunc(LPVOID di) ModuleTreeInfoStruct *lParam;
// module list
- struct ModSetLinkLinkItem *module;
+ ModSetLinkLinkItem *module;
ModuleSettingLL modlist;
hRestore = NULL;
@@ -482,7 +482,7 @@ void __cdecl PopulateModuleTreeThreadFunc(LPVOID di) TreeView_InsertItem(hwnd2Tree, &tvi);
}
- module = (struct ModSetLinkLinkItem *)module->next;
+ module = (ModSetLinkLinkItem *)module->next;
}
if (db_get_b(NULL,modname,"ExpandSettingsOnOpen",0))
@@ -556,7 +556,7 @@ void moduleListWM_NOTIFY(HWND hwnd,UINT msg,WPARAM wParam,LPARAM lParam)// hwnd HTREEITEM item = {0};
ModuleTreeInfoStruct *_lParam;
HWND hwnd2Tree = GetDlgItem(hwnd2mainWindow,IDC_MODULES);
- struct ModSetLinkLinkItem *module;
+ ModSetLinkLinkItem *module;
ModuleSettingLL modlist;
HANDLE hContact = mtis->hContact;
@@ -584,7 +584,7 @@ void moduleListWM_NOTIFY(HWND hwnd,UINT msg,WPARAM wParam,LPARAM lParam)// hwnd tvi.item.lParam = (LPARAM)_lParam;
TreeView_InsertItem(hwnd2Tree, &tvi);
}
- module = (struct ModSetLinkLinkItem *)module->next;
+ module = (ModSetLinkLinkItem *)module->next;
}
FreeModuleSettingLL(&modlist);
|