Получение ошибки X при запуске приложения GTK + - PullRequest
0 голосов
/ 19 апреля 2010

Я написал приложение GTK +, но я получаю следующую ошибку X Window при запуске:

    The program 'TestApp' received an X Window System error.
    This probably reflects a bug in the program.
    The error was 'BadMatch (invalid parameter attributes)'.
      (Details: serial 222 error_code 8 request_code 2 minor_code 0)
      (Note to programmers: normally, X errors are reported asynchronously;
       that is, you will receive the error a while after causing it.
       To debug your program, run it with the --sync command line
       option to change this behavior. You can then get a meaningful
       backtrace from your debugger if you break on the gdk_x_error() function.)

Что может быть причиной этой ошибки? Я написал это приложение в C.

1 Ответ

1 голос
/ 19 апреля 2010

Я бы попробовал сделать так, как он предлагает: запустите приложение с параметром --sync cmd и запустите его в отладчике, чтобы вы могли увидеть, какая строка вызывает ошибку.

...