-rw-r--r-- | noncore/tools/formatter/formatter.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/noncore/tools/formatter/formatter.cpp b/noncore/tools/formatter/formatter.cpp index 983459c..d52a4be 100644 --- a/noncore/tools/formatter/formatter.cpp +++ b/noncore/tools/formatter/formatter.cpp @@ -463,33 +463,33 @@ QString FormatterApp::getFileSystemType(const QString ¤tText) { if( temp.find( currentText,0,TRUE) != -1) { return temp.right( temp.length() - temp.find("::",0,TRUE) - 2); // qDebug(fsType); } } return ""; } bool FormatterApp::doFsck() { Output *outDlg; QString selectedDevice; -#if defined(QT_QWS_IPAQ) || defined(QT_QWS_EBX) // lets test on something cheap +//f defined(QT_QWS_IPAQ) || defined(QT_QWS_EBX) // lets test on something cheap selectedDevice = deviceComboBox->currentText(); -#else +//#else // currentText = diskDevice = "/dev/fd0"; QString umountS = "umount -v /floppy 2>&1"; QString remountS = "mount -v /floppy 2>&1"; selectedDevice ="/dev/fd0"; -#endif +//#endif QString fsType = getFileSystemType((const QString &)selectedDevice); QString cmd; qDebug( selectedDevice +" "+ fsType); if(fsType == "vfat") cmd = "dosfsck -vy "; if(fsType == "ext2") cmd = "e2fsck -cpvy "; cmd += selectedDevice + " 2>&1"; outDlg = new Output(this, tr("Formatter Output"),FALSE); outDlg->showMaximized(); outDlg->show(); qApp->processEvents(); |