diff options
author | Slávek Banko <[email protected]> | 2019-12-10 01:32:46 +0100 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2019-12-10 01:32:46 +0100 |
commit | 24748270289583a17ed348baf0a21c28f700a5de (patch) | |
tree | 191e590711e35459326d946e74234a6b6347384d /kopete/protocols/oscar/aim/ui | |
parent | 91ba38a1df42b56caa73babc90ffa4f674c000d4 (diff) | |
download | tdenetwork-24748270289583a17ed348baf0a21c28f700a5de.tar.gz tdenetwork-24748270289583a17ed348baf0a21c28f700a5de.zip |
kopete: Change the default AIM server from login.oscar.aol.com to iwarg.ddns.net.
Signed-off-by: Slávek Banko <[email protected]>
Diffstat (limited to 'kopete/protocols/oscar/aim/ui')
-rw-r--r-- | kopete/protocols/oscar/aim/ui/aimeditaccountui.ui | 6 | ||||
-rw-r--r-- | kopete/protocols/oscar/aim/ui/aimeditaccountwidget.cpp | 8 |
2 files changed, 7 insertions, 7 deletions
diff --git a/kopete/protocols/oscar/aim/ui/aimeditaccountui.ui b/kopete/protocols/oscar/aim/ui/aimeditaccountui.ui index c2ec9844..98932d9b 100644 --- a/kopete/protocols/oscar/aim/ui/aimeditaccountui.ui +++ b/kopete/protocols/oscar/aim/ui/aimeditaccountui.ui @@ -265,7 +265,7 @@ <string>The IP address or hostmask of the AIM server you wish to connect to.</string> </property> <property name="whatsThis" stdset="0"> - <string>The IP address or hostmask of the AIM server you wish to connect to. Normally you will want the default (login.oscar.aol.com).</string> + <string>The IP address or hostmask of the AIM server you wish to connect to. Normally you will want the default (iwarg.ddns.net).</string> </property> </widget> <widget class="TQLineEdit"> @@ -276,13 +276,13 @@ <bool>false</bool> </property> <property name="text"> - <string>login.oscar.aol.com</string> + <string>iwarg.ddns.net</string> </property> <property name="toolTip" stdset="0"> <string>The IP address or hostmask of the AIM server you wish to connect to.</string> </property> <property name="whatsThis" stdset="0"> - <string>The IP address or hostmask of the AIM server you wish to connect to. Normally you will want the default (login.oscar.aol.com).</string> + <string>The IP address or hostmask of the AIM server you wish to connect to. Normally you will want the default (iwarg.ddns.net).</string> </property> </widget> <widget class="TQLabel"> diff --git a/kopete/protocols/oscar/aim/ui/aimeditaccountwidget.cpp b/kopete/protocols/oscar/aim/ui/aimeditaccountwidget.cpp index e3c1f62b..da9b5d6d 100644 --- a/kopete/protocols/oscar/aim/ui/aimeditaccountwidget.cpp +++ b/kopete/protocols/oscar/aim/ui/aimeditaccountwidget.cpp @@ -40,9 +40,9 @@ AIMEditAccountWidget::AIMEditAccountWidget( AIMProtocol *protocol, //Remove me after we can change Account IDs (Matt) mGui->edtAccountId->setDisabled( true ); mGui->mAutoLogon->setChecked( account->excludeConnect() ); - TQString serverEntry = account->configGroup()->readEntry( "Server", "login.oscar.aol.com" ); + TQString serverEntry = account->configGroup()->readEntry( "Server", "iwarg.ddns.net" ); int portEntry = account->configGroup()->readNumEntry( "Port", 5190 ); - if ( serverEntry != "login.oscar.aol.com" || portEntry != 5190 ) + if ( serverEntry != "iwarg.ddns.net" || portEntry != 5190 ) mGui->optionOverrideServer->setChecked( true ); else mGui->optionOverrideServer->setChecked( false ); @@ -113,7 +113,7 @@ Kopete::Account *AIMEditAccountWidget::apply() } else { - static_cast<OscarAccount *>( mAccount )->setServerAddress( "login.oscar.aol.com" ); + static_cast<OscarAccount *>( mAccount )->setServerAddress( "iwarg.ddns.net" ); static_cast<OscarAccount *>( mAccount )->setServerPort( 5190 ); } @@ -165,7 +165,7 @@ bool AIMEditAccountWidget::validateData() void AIMEditAccountWidget::slotOpenRegister() { - KRun::runURL( "http://my.screenname.aol.com/_cqr/login/login.psp?siteId=snshomepage&mcState=initialized&createSn=1", "text/html" ); + KRun::runURL( "http://iwarg.ddns.net/aim/index.php?action=register", "text/html" ); } #include "aimeditaccountwidget.moc" |