diff options
Diffstat (limited to 'plugins/SecureIM/src/options.cpp')
| -rw-r--r-- | plugins/SecureIM/src/options.cpp | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/SecureIM/src/options.cpp b/plugins/SecureIM/src/options.cpp index 31d5159a9b..732b3466a3 100644 --- a/plugins/SecureIM/src/options.cpp +++ b/plugins/SecureIM/src/options.cpp @@ -977,7 +977,7 @@ void RefreshGeneralDlg(HWND hDlg, BOOL iInit)  	char tmp[NAMSIZE];
 -	for (HCONTACT hContact = db_find_first(); hContact; hContact = db_find_next(hContact)) {
 +	for (MCONTACT hContact = db_find_first(); hContact; hContact = db_find_next(hContact)) {
  		pUinKey ptr = getUinKey(hContact);
  		if (ptr && isSecureProtocol(hContact) && !isChatRoom(hContact)) {
  			if (iInit) {
 @@ -1063,7 +1063,7 @@ void RefreshPGPDlg(HWND hDlg, BOOL iInit)  	char tmp[NAMSIZE];
 -	for (HCONTACT hContact = db_find_first(); hContact; hContact = db_find_next(hContact)) {
 +	for (MCONTACT hContact = db_find_first(); hContact; hContact = db_find_next(hContact)) {
  		pUinKey ptr = getUinKey(hContact);
  		if (ptr && ptr->mode == MODE_PGP && isSecureProtocol(hContact) /*&& !getMetaContact(hContact)*/ && !isChatRoom(hContact)) {
  			LPSTR szKeyID = db_get_sa(hContact,MODULENAME,"pgp_abbr");
 @@ -1123,7 +1123,7 @@ void RefreshGPGDlg(HWND hDlg, BOOL iInit)  	char tmp[NAMSIZE];
 -	for (HCONTACT hContact = db_find_first(); hContact; hContact = db_find_next(hContact)) {
 +	for (MCONTACT hContact = db_find_first(); hContact; hContact = db_find_next(hContact)) {
  		pUinKey ptr = getUinKey(hContact);
  		if (ptr && ptr->mode == MODE_GPG && isSecureProtocol(hContact) /*&& !getMetaContact(hContact)*/ && !isChatRoom(hContact)) {
  			if (iInit )
 @@ -1176,7 +1176,7 @@ void ResetGeneralDlg(HWND hDlg)  	lvi.mask = LVIF_TEXT | LVIF_IMAGE | LVIF_PARAM;
  	char tmp[NAMSIZE];
 -	for (HCONTACT hContact = db_find_first(); hContact; hContact = db_find_next(hContact)) {
 +	for (MCONTACT hContact = db_find_first(); hContact; hContact = db_find_next(hContact)) {
  		if (!isSecureProtocol(hContact) || isChatRoom(hContact))
  			continue;
  | 
