diff options
Diffstat (limited to 'plugins/WebView/src')
| -rw-r--r-- | plugins/WebView/src/webview.cpp | 2 | ||||
| -rw-r--r-- | plugins/WebView/src/webview_datawnd.cpp | 2 | ||||
| -rw-r--r-- | plugins/WebView/src/webview_services.cpp | 8 | 
3 files changed, 6 insertions, 6 deletions
diff --git a/plugins/WebView/src/webview.cpp b/plugins/WebView/src/webview.cpp index 61904d5a9e..51387e5908 100644 --- a/plugins/WebView/src/webview.cpp +++ b/plugins/WebView/src/webview.cpp @@ -178,7 +178,7 @@ int Doubleclick(WPARAM wParam, LPARAM lParam)  {
  	MCONTACT hContact = wParam;
  	char *szProto = GetContactProto(hContact);
 -	if ( lstrcmpA(MODULENAME, szProto))
 +	if ( mir_strcmp(MODULENAME, szProto))
  		return 0;
  	int action = db_get_b(hContact, MODULENAME, DBLE_WIN_KEY, 1);
 diff --git a/plugins/WebView/src/webview_datawnd.cpp b/plugins/WebView/src/webview_datawnd.cpp index 2731f9a263..ea05a9142c 100644 --- a/plugins/WebView/src/webview_datawnd.cpp +++ b/plugins/WebView/src/webview_datawnd.cpp @@ -132,7 +132,7 @@ static MCONTACT FindContactByUrl(HWND hwndDlg)  		ptrT db1( db_get_tsa(hContact, MODULENAME, URL_KEY));
  		ptrT db2( db_get_tsa(hContact, MODULENAME, PRESERVE_NAME_KEY));
 -		if (!lstrcmp(urltext, db1) && !lstrcmp(titlebartxt, db2)) {
 +		if (!mir_tstrcmp(urltext, db1) && !mir_tstrcmp(titlebartxt, db2)) {
  			contactcount++;
  			if (contactcount > 1) {
  				MessageBox(NULL, TranslateT("ERROR: You have two or more Webview contacts with the same URL and contact name."), _T(MODULENAME), MB_OK);
 diff --git a/plugins/WebView/src/webview_services.cpp b/plugins/WebView/src/webview_services.cpp index 924b8ab9e6..998ec84c8b 100644 --- a/plugins/WebView/src/webview_services.cpp +++ b/plugins/WebView/src/webview_services.cpp @@ -97,7 +97,7 @@ int DBSettingChanged(WPARAM wParam, LPARAM lParam)  				FILE *pcachefile = _tfopen(newcachepath, _T("r"));  				if (pcachefile != NULL) {  					fclose(pcachefile); -					if (lstrcmp(newcachepath, renamedcachepath)) { +					if (mir_tstrcmp(newcachepath, renamedcachepath)) {  						MoveFile(newcachepath, renamedcachepath);  						db_set_ts(hContact, MODULENAME, CACHE_FILE_KEY, renamedcachepath);  					} @@ -112,7 +112,7 @@ int DBSettingChanged(WPARAM wParam, LPARAM lParam)  int SiteDeleted(WPARAM wParam, LPARAM lParam)  {  	MCONTACT hContact = wParam; -	if (lstrcmpA(GetContactProto(hContact), MODULENAME)) +	if (mir_strcmp(GetContactProto(hContact), MODULENAME))  		return 0;  	ptrT contactName( db_get_tsa(hContact, MODULENAME, PRESERVE_NAME_KEY)); @@ -355,7 +355,7 @@ INT_PTR AddToList(WPARAM wParam, LPARAM lParam)  		// check ID to see if the contact already exist in the database  		if (db_get_ts(hContact, MODULENAME, "URL", &dbv))  			continue; -		if (!lstrcmpi(psr->nick, dbv.ptszVal)) { +		if (!mir_tstrcmpi(psr->nick, dbv.ptszVal)) {  			// remove the flag for not on list and hidden, thus make the  			// contact visible  			// and add them on the list @@ -406,7 +406,7 @@ INT_PTR AddToList(WPARAM wParam, LPARAM lParam)  	for (MCONTACT hContact2 = db_find_first(MODULENAME); hContact2 != NULL; hContact2 = db_find_next(hContact2, MODULENAME)) {  		if (!db_get_ts(hContact2, MODULENAME, PRESERVE_NAME_KEY, &dbv)) { -			if (!lstrcmpi(Newnick, dbv.ptszVal)) { +			if (!mir_tstrcmpi(Newnick, dbv.ptszVal)) {  				// remove the flag for not on list and hidden, thus make the  				// contact visible  				// and add them on the list  | 
