summaryrefslogtreecommitdiff
path: root/noncore/tools
Unidiff
Diffstat (limited to 'noncore/tools') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/tools/formatter/formatter.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/noncore/tools/formatter/formatter.cpp b/noncore/tools/formatter/formatter.cpp
index ed0ced1..46dc01c 100644
--- a/noncore/tools/formatter/formatter.cpp
+++ b/noncore/tools/formatter/formatter.cpp
@@ -466,24 +466,27 @@ QString FormatterApp::getFileSystemType(const QString &currentText) {
466// qDebug(fsType); 466// qDebug(fsType);
467 } 467 }
468 } 468 }
469 return ""; 469 return "";
470} 470}
471 471
472bool FormatterApp::doFsck() { 472bool FormatterApp::doFsck() {
473 473
474 Output *outDlg; 474 Output *outDlg;
475 QString selectedDevice; 475 QString selectedDevice;
476#if defined(QT_QWS_IPAQ) || defined(QT_QWS_EBX) 476#if defined(QT_QWS_IPAQ) || defined(QT_QWS_EBX)
477 selectedDevice = deviceComboBox->currentText(); 477 selectedDevice = deviceComboBox->currentText();
478
479 QString umountS = "umount -v "+selectedDevice+" 2>&1";
480 QString remountS = "mount -v "+selectedDevice+" 2>&1";
478#else 481#else
479 // for testing 482 // for testing
480// currentText = diskDevice = "/dev/fd0"; 483// currentText = diskDevice = "/dev/fd0";
481 QString umountS = "umount -v /floppy 2>&1"; 484 QString umountS = "umount -v /floppy 2>&1";
482 QString remountS = "mount -v /floppy 2>&1"; 485 QString remountS = "mount -v /floppy 2>&1";
483 selectedDevice ="/dev/fd0"; 486 selectedDevice ="/dev/fd0";
484 487
485#endif 488#endif
486 489
487 QString fsType = getFileSystemType((const QString &)selectedDevice); 490 QString fsType = getFileSystemType((const QString &)selectedDevice);
488 QString cmd; 491 QString cmd;
489 qDebug( selectedDevice +" "+ fsType); 492 qDebug( selectedDevice +" "+ fsType);