X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fqtui%2Fcoreconnectdlg.cpp;h=3ba9c29737314b737a7f036db9423de591655c3a;hb=a18660ee87e81b6f4072537be3aa10c93a243b2a;hp=16d4552c4fc616de23a5dbd126cb002d2cba04e8;hpb=99c92e21b3b9eb5ed661632cdfb69aabfc6b2deb;p=quassel.git diff --git a/src/qtui/coreconnectdlg.cpp b/src/qtui/coreconnectdlg.cpp index 16d4552c..3ba9c297 100644 --- a/src/qtui/coreconnectdlg.cpp +++ b/src/qtui/coreconnectdlg.cpp @@ -1,11 +1,11 @@ /*************************************************************************** - * Copyright (C) 2005-07 by The Quassel Team * + * Copyright (C) 2005-07 by the Quassel IRC Team * * 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 * @@ -59,8 +59,8 @@ CoreConnectDlg::CoreConnectDlg(QWidget *parent, bool /*doAutoConnect*/) : QDialo connect(Client::instance(), SIGNAL(showConfigWizard(const QVariantMap &)), this, SLOT(showConfigWizard(const QVariantMap &))); AccountSettings s; + QString lastacc = s.lastAccount(); ui.accountList->addItems(s.knownAccounts()); - curacc = s.lastAccount(); if(!ui.accountList->count()) { //if(doAutoConnect) reject(); @@ -90,7 +90,7 @@ CoreConnectDlg::CoreConnectDlg(QWidget *parent, bool /*doAutoConnect*/) : QDialo autoConnectToggled(true); */ } else { - if(!curacc.isEmpty()) { + if(!lastacc.isEmpty()) { //if(doAutoConnect) { qDebug() << "auto"; // AccountSettings s; // int idx = ui.accountList->findText(s.autoConnectAccount()); @@ -100,7 +100,7 @@ CoreConnectDlg::CoreConnectDlg(QWidget *parent, bool /*doAutoConnect*/) : QDialo // doConnect(); // } //} else { - int idx = ui.accountList->findText(curacc); + int idx = ui.accountList->findText(lastacc); ui.accountList->setCurrentIndex(idx); //} }