diff options
author | George Hazan <george.hazan@gmail.com> | 2015-05-06 16:13:57 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-05-06 16:13:57 +0000 |
commit | e1696aaefdcd2bffb3708b9ba3880ae1c5e36817 (patch) | |
tree | d7f2b4bdc821f56d78f17fb35af7875d284fff8b /plugins/DbEditorPP/src/moduletree.cpp | |
parent | a3a194dd8505b696ef850821dd6674bbe6528387 (diff) |
exclusion for the ansi plugin :(
git-svn-id: http://svn.miranda-ng.org/main/trunk@13466 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/DbEditorPP/src/moduletree.cpp')
-rw-r--r-- | plugins/DbEditorPP/src/moduletree.cpp | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/plugins/DbEditorPP/src/moduletree.cpp b/plugins/DbEditorPP/src/moduletree.cpp index 171cc0d808..e2d2345edc 100644 --- a/plugins/DbEditorPP/src/moduletree.cpp +++ b/plugins/DbEditorPP/src/moduletree.cpp @@ -534,7 +534,8 @@ void moduleListRightClick(HWND hwnd, WPARAM wParam, LPARAM lParam); void moduleListWM_NOTIFY(HWND hwnd, UINT, WPARAM wParam, LPARAM lParam)// hwnd here is to the main window, NOT the treview
{
switch (((NMHDR *)lParam)->code) {
- case TVN_ITEMEXPANDING:
+ case TVN_ITEMEXPANDINGA:
+ case TVN_ITEMEXPANDINGW:
if (populating && ((LPNMTREEVIEW)lParam)->action == TVE_EXPAND) {
ModuleTreeInfoStruct *mtis = (ModuleTreeInfoStruct *)((LPNMTREEVIEW)lParam)->itemNew.lParam;
if (mtis && (mtis->type == (CONTACT | EMPTY))) {
@@ -578,7 +579,8 @@ void moduleListWM_NOTIFY(HWND hwnd, UINT, WPARAM wParam, LPARAM lParam)// hwnd h }
break;
- case TVN_SELCHANGED:
+ case TVN_SELCHANGEDA:
+ case TVN_SELCHANGEDW:
{
ModuleTreeInfoStruct *mtis;
LPNMTREEVIEW pnmtv = (LPNMTREEVIEW)lParam;
@@ -675,7 +677,8 @@ void moduleListWM_NOTIFY(HWND hwnd, UINT, WPARAM wParam, LPARAM lParam)// hwnd h moduleListRightClick(hwnd, wParam, lParam);
break;
- case TVN_BEGINLABELEDIT: // subclass it..
+ case TVN_BEGINLABELEDITA: // subclass it..
+ case TVN_BEGINLABELEDITW:
{
LPNMTVDISPINFO ptvdi = (LPNMTVDISPINFO)lParam;
ModuleTreeInfoStruct *mtis = (ModuleTreeInfoStruct *)ptvdi->item.lParam;
@@ -689,7 +692,8 @@ void moduleListWM_NOTIFY(HWND hwnd, UINT, WPARAM wParam, LPARAM lParam)// hwnd h }
break;
- case TVN_ENDLABELEDIT:
+ case TVN_ENDLABELEDITA:
+ case TVN_ENDLABELEDITW:
LPNMTVDISPINFO ptvdi = (LPNMTVDISPINFO)lParam;
TVITEM tvi = { 0 };
char text[264];
|