diff --git a/dviwin_export.cpp b/dviwin_export.cpp index be1057103..eb8bd71c3 100644 --- a/dviwin_export.cpp +++ b/dviwin_export.cpp @@ -333,8 +333,8 @@ void dviWindow::exportPS(QString fname, QString options, KPrinter *printer) } fclose(f); } else { - KMessageBox::error(this, i18n("Failed to copy the DVI-file %1 to the temporary file %2. " - "The export or print command is aborted.").arg(dviFile->filename).arg(sourceFileName)); + KMessageBox::error(this, i18n("Failed to copy the DVI-file %1 to the temporary file %2. " + "The export or print command is aborted.").arg(dviFile->filename).arg(sourceFileName)); return; } } @@ -349,9 +349,9 @@ void dviWindow::exportPS(QString fname, QString options, KPrinter *printer) qApp->connect(proc, SIGNAL(receivedStderr(KProcess *, char *, int)), this, SLOT(dvips_output_receiver(KProcess *, char *, int))); qApp->connect(proc, SIGNAL(receivedStdout(KProcess *, char *, int)), this, SLOT(dvips_output_receiver(KProcess *, char *, int))); qApp->connect(proc, SIGNAL(processExited(KProcess *)), this, SLOT(dvips_terminated(KProcess *))); - export_errorString = i18n("The external program 'dvips', which was used to export the file, reported an error. " + export_errorString = i18n("The external program 'dvips', which was used to export the file, reported an error. " "You might wish to look at the document info dialog which you will " - "find in the File-Menu for a precise error report.") ; + "find in the File-Menu for a precise error report.") ; if (info) info->clear(QString(i18n("Export: %1 to PostScript")).arg(KShellProcess::quote(dviFile->filename)));