Ok

>Find out wheterh psppire_output_submit is getting called or not.

It is.

gtk_window_set_urgency_hint  seems to be the troublemaker. If I comment
this out, the program works.

====
/*
  gtk_window_set_urgency_hint (GTK_WINDOW (pod->viewer), TRUE);
*/
done:
  cairo_destroy (cr);
}
====

Replacing
  gtk_window_set_urgency_hint (GTK_WINDOW (pod->viewer), TRUE);
with
  gtk_window_set_urgency_hint (NULL, TRUE);

Also works.

My GTK2 version is  2.24.8-1.7

Suggestions?

Have fun

2012/1/15 John Darrington <j...@darrington.wattle.id.au>

> On Sun, Jan 15, 2012 at 11:15:39AM +0100, Harry Thijssen wrote:
>     Hi
>
>      If I use
>     /*
>           if (settings_get_output_routing (type) & d->device_type)
>     */
>             d->class->submit (d, item);
>     also the program crashes.
>
>     Obviously it is option 2. So I looked in the wrong place :-(
>
>
> Ok.  So the next step is..  d->class->submit should be a pointer to
> the function psppire_output_submit in src/ui/gui/psppire-output-window.c
>
> Either it is not pointing there like it should, or psppire_output_submit
> is crashing.
>
> Find out wheterh psppire_output_submit is getting called or not.
>
> J'
>
_______________________________________________
pspp-dev mailing list
pspp-dev@gnu.org
https://lists.gnu.org/mailman/listinfo/pspp-dev

Reply via email to