-rw-r--r-- | noncore/tools/formatter/formatter.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/noncore/tools/formatter/formatter.cpp b/noncore/tools/formatter/formatter.cpp index d52a4be..bd0bb01 100644 --- a/noncore/tools/formatter/formatter.cpp +++ b/noncore/tools/formatter/formatter.cpp @@ -473,7 +473,8 @@ bool FormatterApp::doFsck() { Output *outDlg; QString selectedDevice; -//f defined(QT_QWS_IPAQ) || defined(QT_QWS_EBX) // lets test on something cheap +#if defined(QT_QWS_IPAQ) || defined(QT_QWS_EBX) selectedDevice = deviceComboBox->currentText(); -//#else +#else + // for testing // currentText = diskDevice = "/dev/fd0"; QString umountS = "umount -v /floppy 2>&1"; @@ -481,5 +482,5 @@ bool FormatterApp::doFsck() { selectedDevice ="/dev/fd0"; -//#endif +#endif QString fsType = getFileSystemType((const QString &)selectedDevice); |