From 51257c29633432c4ecc418fd07726b798508c613 Mon Sep 17 00:00:00 2001 From: am Date: Wed, 16 Sep 2009 17:49:38 +0000 Subject: -Removed some qDebug() statements -Removed filtering of extractor output (not tested) -Changed SelectionMode of filemanager to ExtendedSelection -Fixed bug in SheMov::setFreeFS -Size of selected files is now shown in filemanager git-svn-id: file:///var/svn/repos2/shemov/trunk@407 f440f766-f032-0410-8965-dc7d17de2ca0 --- extractordialog.cpp | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) (limited to 'extractordialog.cpp') diff --git a/extractordialog.cpp b/extractordialog.cpp index 7bb2f81..984c1d8 100644 --- a/extractordialog.cpp +++ b/extractordialog.cpp @@ -42,6 +42,8 @@ void ExtractorDialog::extractionFinished(){ mCancelClose->disconnect(SIGNAL(clicked())); connect(mCancelClose, SIGNAL(clicked()), this, SLOT(accept())); mCancelClose->setText(tr("Close")); + setWindowTitle(tr("Extraction finished")); + mOutput->append(tr("\nFinished.\n")); } void ExtractorDialog::killProcess(){ @@ -51,19 +53,7 @@ void ExtractorDialog::killProcess(){ void ExtractorDialog::writeOutput(){ if(mExtractor->canReadLine()){ - QString line = mExtractor->readLine(); - QRegExp dots("^...\\s+"); - if(dots.indexIn(line) != -1){ - line.replace(dots, "File: "); - mOutput->append(line); - return; - } - QRegExp extracting("/.*/"); - if(extracting.indexIn(line) != -1){ - line.replace(extracting, ""); - mOutput->append(line); - } - + mOutput->append(mExtractor->readLine()); } } -- cgit v1.2.3-70-g09d2