Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 102884 | Differences between
and this patch

Collapse All | Expand All

(-)src/xitk/xine-toolkit/xitk.c.orig (-4 / +3 lines)
Lines 147-153 Link Here
147
  
147
  
148
  struct timeval              keypress;
148
  struct timeval              keypress;
149
149
150
  KeyCode                     ignore_keys[3];
150
  KeyCode                     ignore_keys[2];
151
151
152
  pthread_t                  *tips_thread;
152
  pthread_t                  *tips_thread;
153
  unsigned long               tips_timeout;
153
  unsigned long               tips_timeout;
Lines 1803-1811 Link Here
1803
  xitk_x_error           = 0;
1803
  xitk_x_error           = 0;
1804
  gXitk->x_error_handler = NULL;
1804
  gXitk->x_error_handler = NULL;
1805
  gXitk->modalw          = None;
1805
  gXitk->modalw          = None;
1806
  gXitk->ignore_keys[0]  = XKeysymToKeycode(display, XK_Scroll_Lock);
1806
  gXitk->ignore_keys[0]  = XKeysymToKeycode(display, XK_Shift_L);
1807
  gXitk->ignore_keys[1]  = XKeysymToKeycode(display, XK_Num_Lock);
1807
  gXitk->ignore_keys[1]  = XKeysymToKeycode(display, XK_Control_L);
1808
  gXitk->ignore_keys[2]  = XKeysymToKeycode(display, XK_Caps_Lock);
1809
  gXitk->tips_timeout    = TIPS_TIMEOUT;
1808
  gXitk->tips_timeout    = TIPS_TIMEOUT;
1810
  XGetInputFocus(display, &(gXitk->parent.window), &(gXitk->parent.focus));
1809
  XGetInputFocus(display, &(gXitk->parent.window), &(gXitk->parent.focus));
1811
1810

Return to bug 102884