-rw-r--r-- | noncore/net/opieftp/opieftp.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/noncore/net/opieftp/opieftp.cpp b/noncore/net/opieftp/opieftp.cpp index e15bbef..d78b7d1 100644 --- a/noncore/net/opieftp/opieftp.cpp +++ b/noncore/net/opieftp/opieftp.cpp @@ -11,9 +11,13 @@ ***************************************************************************/ //#define DEVELOPERS_VERSION #include "opieftp.h" + +extern "C" { #include "ftplib.h" +} + #include "inputDialog.h" #include <qpe/qpemenubar.h> #include <qpe/qpetoolbar.h> @@ -1231,8 +1235,10 @@ void OpieFtp::serverComboSelected(int index) remotePath->setText(cfg.readEntry("RemotePath", "/")); username = cfg.readEntry("Username", "anonymous"); UsernameComboBox->lineEdit()->setText(username); + +// qDebug("Password is "+cfg.readEntryCrypt(username, "me@opieftp.org")); PasswordEdit->setText(cfg.readEntryCrypt(username, "me@opieftp.org")); cfg.setGroup("Server"); temp.sprintf("%d",currentServerConfig); |