|
From: Tatsuro M. <tma...@ya...> - 2014-09-24 06:54:20
|
Sorry I have mistaken.
line around 455 => 1455
Tatsuro
>
> In command.c
>
>
> line around 455 => 1455
> #=====================================================================
>
> #if defined(_Windows)
> # ifdef WXWIDGETS
> if (!strcmp(term->name, "wxt")) {
> /* copy of the code below: !(_Windows || OS2) */
> if (term && term->waitforinput && paused_for_mouse){
> fprintf(stderr, "%s\n", buf);
> term->waitforinput(0);
> } else {
> # if defined(WGP_CONSOLE)
> fprintf(stderr, "%s\n", buf);
> if (term && term->waitforinput)
> while (term->waitforinput(0) != (int)'\r') {}; /* waiting for
> Enter*/
> # else /* !WGP_CONSOLE */
> if (!Pause(buf))
> bail_to_command_line();
> # endif
> }
> } else
> # endif /* _Windows && WXWIDGETS */
>
> #=====================================================================
>
>
> For qt, are similar treatments required?
>
> Sorry I do not enough time to check the matter more in detail.
>
> Tatsuro
>
|