diff options
author | George Hazan <george.hazan@gmail.com> | 2015-05-31 11:46:05 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-05-31 11:46:05 +0000 |
commit | 1ce3da1cca093143d9629bc46e221dd8be962e12 (patch) | |
tree | b99d12d635a65f8c78499137137df2bd591b50be /plugins/AssocMgr | |
parent | 03512ff2ed0f3d1ed6857ee85b0eb7268931ec3f (diff) |
- MAllStrings: a handy union to hold an incoming string parameter of any type;
- FNAMECHAR: atavism extincted;
- PROTOSEARCHRESULT: structure prepared to use results of any type, including utf
git-svn-id: http://svn.miranda-ng.org/main/trunk@13932 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/AssocMgr')
-rw-r--r-- | plugins/AssocMgr/src/test.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/AssocMgr/src/test.cpp b/plugins/AssocMgr/src/test.cpp index 5640a5ce18..8b3593e89d 100644 --- a/plugins/AssocMgr/src/test.cpp +++ b/plugins/AssocMgr/src/test.cpp @@ -117,7 +117,7 @@ static int ServiceParseAimLink(WPARAM,LPARAM lParam) acs.psr=&psr;
memset(&psr, 0, sizeof(PROTOSEARCHRESULT));
psr.cbSize=sizeof(PROTOSEARCHRESULT);
- psr.nick=sn;
+ psr.nick.t=sn;
CallService(MS_ADDCONTACT_SHOW,0,(LPARAM)&acs);
}
return 0;
@@ -436,7 +436,7 @@ static int ServiceParseYmsgrLink(WPARAM wParam,LPARAM lParam) acs.psr=&psr;
memset(&psr, 0, sizeof(PROTOSEARCHRESULT));
psr.cbSize=sizeof(PROTOSEARCHRESULT);
- psr.nick=id;
+ psr.nick.t=id;
CallService(MS_ADDCONTACT_SHOW,0,(LPARAM)&acs);
}
return 0;
@@ -551,8 +551,8 @@ static int ServiceParseMsnimLink(WPARAM wParam,LPARAM lParam) acs.psr=&psr;
memset(&psr, 0, sizeof(PROTOSEARCHRESULT));
psr.cbSize=sizeof(PROTOSEARCHRESULT);
- psr.nick=email;
- psr.email=email;
+ psr.nick.t=email;
+ psr.email.t=email;
CallService(MS_ADDCONTACT_SHOW,0,(LPARAM)&acs);
}
return 0;
@@ -746,7 +746,7 @@ static int ServiceParseXmppURI(WPARAM wParam,LPARAM lParam) acs.psr=&psr;
memset(&psr, 0, sizeof(PROTOSEARCHRESULT));
psr.cbSize=sizeof(PROTOSEARCHRESULT);
- psr.nick=jid;
+ psr.nick.t=jid;
CallService(MS_ADDCONTACT_SHOW,0,(LPARAM)&acs);
}
return 0;
|