From b09ee01a3e5fafe8ca5fa50b672f119a82d6aa69 Mon Sep 17 00:00:00 2001 From: Manuel Nickschas Date: Mon, 10 Dec 2007 15:06:26 +0000 Subject: [PATCH] Remove test account. --- README.Qtopia | 8 -------- src/qtopia/coreconnectdlg.cpp | 6 ++++-- 2 files changed, 4 insertions(+), 10 deletions(-) diff --git a/README.Qtopia b/README.Qtopia index 96c0cf3a..3622b1a7 100644 --- a/README.Qtopia +++ b/README.Qtopia @@ -16,14 +16,6 @@ Note that QuasselTopia is just the client; it can't do IRC by itself. You'll need a Quassel core running on some server or PC for the phone to connect to. -For testing purposes we have provided a core on one of our -servers. You can connect to it for checking out QuasselTopia without -having to install your own. The core can be reached at -, with user 'testuser' and password -'testuser'. If you can't connect, please let us know, and we'll -restart it. You may also connect with a Quassel desktop client to this -core. The test account will be automatically created on first run. - In its current state, QuasselTopia cannot do much except for connecting to a core and displaying the buffers you are in. Oh, and chatting of course. But you cannot change any settings, create/edit diff --git a/src/qtopia/coreconnectdlg.cpp b/src/qtopia/coreconnectdlg.cpp index 176e077c..860f43e8 100644 --- a/src/qtopia/coreconnectdlg.cpp +++ b/src/qtopia/coreconnectdlg.cpp @@ -58,15 +58,17 @@ 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"] = "apollo.mindpool.net"; + accData["Host"] = ""; accData["Port"] = 4242; - accData["Password"] = "testuser"; + 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(); -- 2.20.1