- Timestamp:
- 01/13/08 21:39:50 (11 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
Mulberry/branches/v4.1d1/Sources_Common/Application/Preferences/CAdminLock.cp
r19 r150 178 178 179 179 // Remote server 180 for(C INETAccountList::const_iterator iter = prefs->mRemoteAccounts.GetValue().begin(); iter != prefs->mRemoteAccounts.GetValue().end(); iter++)180 for(COptionsAccountList::const_iterator iter = prefs->mRemoteAccounts.GetValue().begin(); iter != prefs->mRemoteAccounts.GetValue().end(); iter++) 181 181 { 182 182 if (!(*iter)->GetServerIP().empty()) … … 257 257 258 258 // Remote server 259 for(C INETAccountList::iterator iter = prefs->mRemoteAccounts.Value().begin(); iter != prefs->mRemoteAccounts.Value().end(); iter++)259 for(COptionsAccountList::iterator iter = prefs->mRemoteAccounts.Value().begin(); iter != prefs->mRemoteAccounts.Value().end(); iter++) 260 260 { 261 261 cdstring serverip = (*iter)->GetServerIP(); … … 367 367 remote_set = mLockedPrefsServerAddr.empty(); 368 368 pos = 0; 369 for(C INETAccountList::iterator iter = prefs->mRemoteAccounts.Value().begin(); iter != prefs->mRemoteAccounts.Value().end(); iter++, pos++)369 for(COptionsAccountList::iterator iter = prefs->mRemoteAccounts.Value().begin(); iter != prefs->mRemoteAccounts.Value().end(); iter++, pos++) 370 370 { 371 371 if (remote_set) … … 455 455 456 456 // Remote server 457 for(C INETAccountList::iterator iter = prefs->mRemoteAccounts.Value().begin(); iter != prefs->mRemoteAccounts.Value().end(); iter++)457 for(COptionsAccountList::iterator iter = prefs->mRemoteAccounts.Value().begin(); iter != prefs->mRemoteAccounts.Value().end(); iter++) 458 458 { 459 459 // Remove port number which shuld not be considered part of the domain … … 516 516 517 517 // Change each plain text authenticator 518 for(C INETAccountList::const_iterator iter = prefs->mRemoteAccounts.GetValue().begin(); iter != prefs->mRemoteAccounts.GetValue().end(); iter++)518 for(COptionsAccountList::const_iterator iter = prefs->mRemoteAccounts.GetValue().begin(); iter != prefs->mRemoteAccounts.GetValue().end(); iter++) 519 519 { 520 520 if ((*iter)->GetAuthenticator().RequiresUserPswd()) … … 597 597 598 598 // Remote server 599 for(C INETAccountList::const_iterator iter = prefs->mRemoteAccounts.GetValue().begin(); iter != prefs->mRemoteAccounts.GetValue().end(); iter++)599 for(COptionsAccountList::const_iterator iter = prefs->mRemoteAccounts.GetValue().begin(); iter != prefs->mRemoteAccounts.GetValue().end(); iter++) 600 600 UpgradeAuthenticator(*iter); 601 601