X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/2b5f62a0b2db198609b45dec622a018dae37008e..2fc2d511d0f095ab5de3713cff6042832f886d15:/docs/html/faqgtk.htm diff --git a/docs/html/faqgtk.htm b/docs/html/faqgtk.htm index df33965ef4..a7f7985a41 100644 --- a/docs/html/faqgtk.htm +++ b/docs/html/faqgtk.htm @@ -32,7 +32,8 @@ See also top-level FAQ page.
  • Warning about GTK libraries supplied with RedHat
  • What range of Intel Linux platforms will a given application binary be usable on?
  • Can I statically link the GTK+ library?
  • -
  • Why does my simple program using EVT_CHAR doesn't work?
  • +
  • Why does my simple program using EVT_CHAR not work?
  • +
  • How do I trace the cause of an X11 error such as BadMatch?

  • @@ -99,7 +100,7 @@ No, this is not possible. It leads to crashes in GTK+.

    Why does my simple program using -EVT_CHAR doesn't work?

    +EVT_CHAR not work? In wxGTK, the frames never get focus and so can never receive CHAR nor KEY events so an EVT_CHAR handler for a frame will be @@ -109,6 +110,14 @@ frame.

    +

    How do I trace the cause of an X11 error such as BadMatch?

    + +When a fatal X11 error occurs, the application quits with no stack trace. +To find out where the problem is, put a breakpoint on g_log (b g_log +in gdb). + +

    +