YOU HAVE TO STOP THIS, I have hundreds of these in the last 24 hours.
IT IS SPAM/






On Sun, Nov 16, 2008 at 5:55 AM, <[EMAIL PROTECTED]> wrote:

> Author: kuemmel
> Date: Sun Nov 16 14:55:31 2008
> New Revision: 27546
>
> URL: http://www.lyx.org/trac/changeset/27546
> Log:
> print process output to lyxerr
>
> Modified:
>
>  
> lyx-devel/branches/personal/kuemmel/progress_meeting/src/support/SystemcallPrivate.cpp
>
> Modified:
> lyx-devel/branches/personal/kuemmel/progress_meeting/src/support/SystemcallPrivate.cpp
> URL:
> http://www.lyx.org/trac/file/lyx-devel/branches/personal/kuemmel/progress_meeting/src/support/SystemcallPrivate.cpp?rev=27546
>
> ==============================================================================
> ---
> lyx-devel/branches/personal/kuemmel/progress_meeting/src/support/SystemcallPrivate.cpp
> (original)
> +++
> lyx-devel/branches/personal/kuemmel/progress_meeting/src/support/SystemcallPrivate.cpp
> Sun Nov 16 14:55:31 2008
> @@ -108,7 +108,7 @@
>  void SystemcallPrivate::newProcessOutput()
>  {
>        const QString output =
> QString::fromLocal8Bit(process->readAllStandardOutput());
> -       lyxerr << "[stdout] " << qPrintable(output);
> +       lyxerr << "[stdout] " << qPrintable(output) << "\n";
>        ProgressInterface* progress = Systemcall::progress();
>        if (progress) {
>                progress->appendMessage(output);
> @@ -119,7 +119,7 @@
>  void SystemcallPrivate::newProcessError()
>  {
>        const QString error =
> QString::fromLocal8Bit(process->readAllStandardError());
> -       lyxerr << "[stderr] " << qPrintable(error);
> +       lyxerr << "[stderr] " << qPrintable(error) << "\n";
>        ProgressInterface* progress = Systemcall::progress();
>        if (progress) {
>                progress->appendError(error);
>
>
>

Reply via email to