diff options
| author | George Hazan <george.hazan@gmail.com> | 2015-06-27 11:09:19 +0000 | 
|---|---|---|
| committer | George Hazan <george.hazan@gmail.com> | 2015-06-27 11:09:19 +0000 | 
| commit | ab4abbb7a60f941acab8f0566c6b619f68f1b489 (patch) | |
| tree | a67f4d3bde6bb59d3c49195a8c6e9085e01124eb /plugins/SmileyAdd/src | |
| parent | 9d65ee38c92c7a0656ddc6c4c26017b7226fc44b (diff) | |
- CLISTMENUITEM::pszContactOwner removed, because it's supported only by contact's menu;
- Menu_AddContactMenuItem now receives parameter szProto;
- Menu_Add* helpers are converted into real functions;
git-svn-id: http://svn.miranda-ng.org/main/trunk@14409 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SmileyAdd/src')
| -rw-r--r-- | plugins/SmileyAdd/src/main.cpp | 2 | ||||
| -rw-r--r-- | plugins/SmileyAdd/src/services.cpp | 6 | 
2 files changed, 4 insertions, 4 deletions
diff --git a/plugins/SmileyAdd/src/main.cpp b/plugins/SmileyAdd/src/main.cpp index 1cc9974b79..506d4be669 100644 --- a/plugins/SmileyAdd/src/main.cpp +++ b/plugins/SmileyAdd/src/main.cpp @@ -53,7 +53,7 @@ static int ModulesLoaded(WPARAM, LPARAM)  	CLISTMENUITEM mi = { 0 };
  	mi.position = 2000070050;
  	mi.icolibItem = icon.hIcolib;
 -	mi.pszName = LPGEN("Assign smiley category");
 +	mi.name.a = LPGEN("Assign smiley category");
  	hContactMenuItem = Menu_AddContactMenuItem(&mi);
  	DownloadInit();
 diff --git a/plugins/SmileyAdd/src/services.cpp b/plugins/SmileyAdd/src/services.cpp index 2cc5413753..773c7cccc9 100644 --- a/plugins/SmileyAdd/src/services.cpp +++ b/plugins/SmileyAdd/src/services.cpp @@ -306,7 +306,7 @@ int RebuildContactMenu(WPARAM wParam, LPARAM)  			const int ind = i + 3;
  			mi.position = ind;
 -			mi.ptszName = (TCHAR*)smc[i].GetDisplayName().c_str();
 +			mi.name.t = (TCHAR*)smc[i].GetDisplayName().c_str();
  			if (cat == smc[i].GetName()) {
  				mi.flags |= CMIF_CHECKED; 
 @@ -320,7 +320,7 @@ int RebuildContactMenu(WPARAM wParam, LPARAM)  		}
  		mi.position = 1;
 -		mi.ptszName = _T("<None>");
 +		mi.name.t = _T("<None>");
  		if (cat == _T("<None>")) {
  			mi.flags |= CMIF_CHECKED; 
  			nonecheck = false;
 @@ -331,7 +331,7 @@ int RebuildContactMenu(WPARAM wParam, LPARAM)  		menuHandleArray.insert(hMenu);
  		mi.position = 2;
 -		mi.ptszName = LPGENT("Protocol specific");
 +		mi.name.t = LPGENT("Protocol specific");
  		if (nonecheck) mi.flags |= CMIF_CHECKED; else mi.flags &= ~CMIF_CHECKED;
  		hMenu = Menu_AddContactMenuItem(&mi);
  | 
