author | llornkcor <llornkcor> | 2002-05-16 16:29:14 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-05-16 16:29:14 (UTC) |
commit | 62c1424c5421e926173133ab4acd7346c590612e (patch) (side-by-side diff) | |
tree | f9df1716b94df11330bb7cb466e26d2e3d1f8add | |
parent | b94bd6003bf7c2024b0f254805f54ff4e52ead6e (diff) | |
download | opie-62c1424c5421e926173133ab4acd7346c590612e.zip opie-62c1424c5421e926173133ab4acd7346c590612e.tar.gz opie-62c1424c5421e926173133ab4acd7346c590612e.tar.bz2 |
fixed not loading ftp configs correctly..
-rw-r--r-- | noncore/net/opieftp/opieftp.cpp | 24 |
1 files changed, 18 insertions, 6 deletions
diff --git a/noncore/net/opieftp/opieftp.cpp b/noncore/net/opieftp/opieftp.cpp index 7ca3fff..293c391 100644 --- a/noncore/net/opieftp/opieftp.cpp +++ b/noncore/net/opieftp/opieftp.cpp @@ -300,3 +300,3 @@ OpieFtp::OpieFtp( ) -// fillCombos(); + fillCombos(); @@ -305,3 +305,5 @@ OpieFtp::OpieFtp( ) populateLocalView(); - readConfig(); +qDebug("read COnfig"); + readConfig(); + qDebug("Set current item"); ServerComboBox->setCurrentItem(currentServerConfig); @@ -433,3 +435,4 @@ void OpieFtp::connector() setCaption(ftp_host); - writeConfig(); + if( currentServerConfig == -1) + writeConfig(); connectServerBtn->setText( tr("Disconnect")); @@ -1147,2 +1150,3 @@ void OpieFtp::readConfig() currentServerConfig = cfg.readNumEntry("currentServer", -1); + // qDebug("Reading %d", currentServerConfig); @@ -1172,2 +1176,3 @@ void OpieFtp::writeConfig() cfg.writeEntry( temp, ServerComboBox->currentText() +":"+PortSpinBox->cleanText() ); + cfg.writeEntry("currentServer", numberOfEntries+1); cfg.setGroup(temp); @@ -1178,2 +1183,3 @@ void OpieFtp::writeConfig() cfg.writeEntry("numberOfEntries", QString::number(numberOfEntries + 1 )); + } @@ -1189,4 +1195,6 @@ void OpieFtp::fillCombos() temp.setNum(i); + qDebug(temp); cfg.setGroup("Server"); remoteServerStr = cfg.readEntry( temp,""); + qDebug( remoteServerStr); int divider = remoteServerStr.length() - remoteServerStr.find(":",0,TRUE); @@ -1197,2 +1205,3 @@ void OpieFtp::fillCombos() remoteServerStr = remoteServerStr.left(remoteServerStr.length()-divider); + qDebug( remoteServerStr); ServerComboBox->insertItem( remoteServerStr ); @@ -1225,4 +1234,5 @@ void OpieFtp::serverComboSelected(int index) - temp.setNum(index+1); + temp.setNum(index); remoteServerStr = cfg.readEntry( temp,""); + qDebug("Group" +temp); cfg.setGroup(temp); @@ -1241,6 +1251,8 @@ void OpieFtp::serverComboSelected(int index) UsernameComboBox->lineEdit()->setText(username); - + qDebug(username); // qDebug("Password is "+cfg.readEntryCrypt(username, "me@opieftp.org")); PasswordEdit->setText(cfg.readEntryCrypt(username, "me@opieftp.org")); - +// UsernameComboBox +// PasswordEdit + cfg.setGroup("Server"); |