author | llornkcor <llornkcor> | 2002-03-24 15:44:15 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-03-24 15:44:15 (UTC) |
commit | 368d5032f4ff4566dea1e99aa2bb782300e0bfd5 (patch) (side-by-side diff) | |
tree | 9d4f453e27e66d4c7b55ebbca84d410ea3ec0204 | |
parent | 0003cbb436fc3d254e2c45aa1d65aee439d322f6 (diff) | |
download | opie-368d5032f4ff4566dea1e99aa2bb782300e0bfd5.zip opie-368d5032f4ff4566dea1e99aa2bb782300e0bfd5.tar.gz opie-368d5032f4ff4566dea1e99aa2bb782300e0bfd5.tar.bz2 |
took out processEvents causing slowup
-rw-r--r-- | noncore/net/opieftp/opieftp.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/noncore/net/opieftp/opieftp.cpp b/noncore/net/opieftp/opieftp.cpp index 4722d70..e2a6cad 100644 --- a/noncore/net/opieftp/opieftp.cpp +++ b/noncore/net/opieftp/opieftp.cpp @@ -335,3 +335,3 @@ void OpieFtp::connector() QCopEnvelope ( "QPE/System", "busy()" ); - qApp->processEvents(); +// qApp->processEvents(); currentRemoteDir=remotePath->text(); @@ -396,3 +396,3 @@ void OpieFtp::localUpload() QCopEnvelope ( "QPE/System", "busy()" ); - qApp->processEvents(); +// qApp->processEvents(); QString strItem = Local_View->currentItem()->text(0); @@ -438,5 +438,5 @@ void OpieFtp::remoteDownload() { +// qApp->processEvents(); int fsz; QCopEnvelope ( "QPE/System", "busy()" ); - qApp->processEvents(); QString strItem = Remote_View->currentItem()->text(0); |