X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtopia%2Fcoreconnectdlg.cpp;h=453ac31db0358dec971cda47f97fe87c9d223c28;hp=106103458630da3de18ce16e49865b94a0ac18b6;hb=a0445f05a1e9aee1a82727a2847dd7ffe81de224;hpb=99c92e21b3b9eb5ed661632cdfb69aabfc6b2deb diff --git a/src/qtopia/coreconnectdlg.cpp b/src/qtopia/coreconnectdlg.cpp index 10610345..453ac31d 100644 --- a/src/qtopia/coreconnectdlg.cpp +++ b/src/qtopia/coreconnectdlg.cpp @@ -1,11 +1,11 @@ /*************************************************************************** - * Copyright (C) 2005-07 by The Quassel IRC Development Team * + * Copyright (C) 2005-08 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * + * (at your option) version 3. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * @@ -57,9 +57,24 @@ CoreConnectDlg::CoreConnectDlg(QWidget *parent, bool /*doAutoConnect*/) : QDialo AccountSettings s; ui.accountList->addItems(s.knownAccounts()); + // if empty, create a test account + /* disabled for the moment + if(!ui.accountList->count()) { + QVariantMap accData; + accData["User"] = "testuser"; + accData["Host"] = ""; + accData["Port"] = 4242; + accData["Password"] = ""; + s.setValue("Test Account", "AccountData", accData); + ui.accountList->addItems(s.knownAccounts()); + } + */ + // end test account if(ui.accountList->count()) ui.accountList->item(0)->setSelected(true); setWidgetStates(); +#ifdef DEVELMODE doConnect(); // shortcut for development +#endif } CoreConnectDlg::~CoreConnectDlg() { @@ -154,7 +169,7 @@ EditCoreAcctDlg::EditCoreAcctDlg(QString accname, QDialog *parent) : QDialog(par ui.accountEdit->setText(accountName()); if(accName.isEmpty()) { - ui.port->setValue(DEFAULT_PORT); + ui.port->setValue(Global::defaultPort); ui.accountEdit->setFocus(); } else { ui.hostEdit->setFocus();