-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 | |||
@@ -328,17 +328,17 @@ void OpieFtp::connectorBtnToggled(bool On) | |||
328 | disConnector(); | 328 | disConnector(); |
329 | } | 329 | } |
330 | 330 | ||
331 | } | 331 | } |
332 | 332 | ||
333 | void OpieFtp::connector() | 333 | void OpieFtp::connector() |
334 | { | 334 | { |
335 | QCopEnvelope ( "QPE/System", "busy()" ); | 335 | QCopEnvelope ( "QPE/System", "busy()" ); |
336 | qApp->processEvents(); | 336 | // qApp->processEvents(); |
337 | currentRemoteDir=remotePath->text(); | 337 | currentRemoteDir=remotePath->text(); |
338 | if(ServerComboBox->currentText().isEmpty()) { | 338 | if(ServerComboBox->currentText().isEmpty()) { |
339 | QMessageBox::warning(this,tr("Ftp"),tr("Please set the server info"),tr("Ok"),0,0); | 339 | QMessageBox::warning(this,tr("Ftp"),tr("Please set the server info"),tr("Ok"),0,0); |
340 | TabWidget->setCurrentPage(2); | 340 | TabWidget->setCurrentPage(2); |
341 | ServerComboBox->setFocus(); | 341 | ServerComboBox->setFocus(); |
342 | connectServerBtn->setOn(FALSE); | 342 | connectServerBtn->setOn(FALSE); |
343 | connectServerBtn->setText( tr("Connect")); | 343 | connectServerBtn->setText( tr("Connect")); |
344 | return; | 344 | return; |
@@ -389,17 +389,17 @@ void OpieFtp::disConnector() | |||
389 | connectServerBtn->setOn(FALSE); | 389 | connectServerBtn->setOn(FALSE); |
390 | 390 | ||
391 | } | 391 | } |
392 | 392 | ||
393 | void OpieFtp::localUpload() | 393 | void OpieFtp::localUpload() |
394 | { | 394 | { |
395 | int fsz; | 395 | int fsz; |
396 | QCopEnvelope ( "QPE/System", "busy()" ); | 396 | QCopEnvelope ( "QPE/System", "busy()" ); |
397 | qApp->processEvents(); | 397 | // qApp->processEvents(); |
398 | QString strItem = Local_View->currentItem()->text(0); | 398 | QString strItem = Local_View->currentItem()->text(0); |
399 | QString localFile = currentDir.canonicalPath()+"/"+strItem; | 399 | QString localFile = currentDir.canonicalPath()+"/"+strItem; |
400 | QString remoteFile= currentRemoteDir+strItem; | 400 | QString remoteFile= currentRemoteDir+strItem; |
401 | QFileInfo fi(localFile); | 401 | QFileInfo fi(localFile); |
402 | if( !fi.isDir()) { | 402 | if( !fi.isDir()) { |
403 | fsz=fi.size(); | 403 | fsz=fi.size(); |
404 | ProgressBar->setTotalSteps(fsz); | 404 | ProgressBar->setTotalSteps(fsz); |
405 | 405 | ||
@@ -431,19 +431,19 @@ void OpieFtp::nullifyCallBack() | |||
431 | FtpOptions(FTPLIB_IDLETIME, NULL, conn); | 431 | FtpOptions(FTPLIB_IDLETIME, NULL, conn); |
432 | FtpOptions(FTPLIB_CALLBACKARG, NULL, conn); | 432 | FtpOptions(FTPLIB_CALLBACKARG, NULL, conn); |
433 | FtpOptions(FTPLIB_CALLBACKBYTES, NULL, conn); | 433 | FtpOptions(FTPLIB_CALLBACKBYTES, NULL, conn); |
434 | 434 | ||
435 | } | 435 | } |
436 | 436 | ||
437 | void OpieFtp::remoteDownload() | 437 | void OpieFtp::remoteDownload() |
438 | { | 438 | { |
439 | // qApp->processEvents(); | ||
439 | int fsz; | 440 | int fsz; |
440 | QCopEnvelope ( "QPE/System", "busy()" ); | 441 | QCopEnvelope ( "QPE/System", "busy()" ); |
441 | qApp->processEvents(); | ||
442 | QString strItem = Remote_View->currentItem()->text(0); | 442 | QString strItem = Remote_View->currentItem()->text(0); |
443 | // strItem=strItem.right(strItem.length()-1); | 443 | // strItem=strItem.right(strItem.length()-1); |
444 | 444 | ||
445 | QString localFile = currentDir.canonicalPath(); | 445 | QString localFile = currentDir.canonicalPath(); |
446 | if(localFile.right(1).find("/",0,TRUE) == -1) | 446 | if(localFile.right(1).find("/",0,TRUE) == -1) |
447 | localFile += "/"; | 447 | localFile += "/"; |
448 | localFile += strItem; | 448 | localFile += strItem; |
449 | // QString localFile = currentDir.canonicalPath()+"/"+strItem; | 449 | // QString localFile = currentDir.canonicalPath()+"/"+strItem; |