don't check for errors in the xcb_create_colormap call

SVN revision: 29974
This commit is contained in:
tilman 2007-05-13 08:40:28 +00:00 committed by tilman
parent 1b5c08f276
commit c9ddb45e1f
1 changed files with 1 additions and 1 deletions

View File

@ -1762,7 +1762,7 @@ _ecore_x_window_argb_internal_new(Ecore_X_Window parent,
return win;
colormap = xcb_generate_id(_ecore_xcb_conn);
xcb_create_colormap_checked(_ecore_xcb_conn, XCB_COLORMAP_ALLOC_NONE, colormap, parent, vis);
xcb_create_colormap(_ecore_xcb_conn, XCB_COLORMAP_ALLOC_NONE, colormap, parent, vis);
value_mask =
XCB_CW_BACK_PIXMAP | XCB_CW_BORDER_PIXEL | XCB_CW_BIT_GRAVITY |