X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/2b5f62a0b2db198609b45dec622a018dae37008e..d3c17ee7a236b1522896b3c55dd5152d866ad976:/docs/html/faqgtk.htm diff --git a/docs/html/faqgtk.htm b/docs/html/faqgtk.htm index df33965ef4..320dbebde8 100644 --- a/docs/html/faqgtk.htm +++ b/docs/html/faqgtk.htm @@ -1,4 +1,3 @@ - @@ -21,7 +20,8 @@

-See also top-level FAQ page. +See also top-level FAQ page +and Unix FAQ page.


List of questions in this category

@@ -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). + +

    +