ecore-x: Use proper XCB_ATOM_CARDINAL in call to window_property_get

Summary: XA_CARDINAL is defined for xlib, XCB_ATOM_CARDINAL is defined
for xcb, so let's use the proper one and fix a build break.

@fix

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2015-01-27 10:33:14 -05:00
parent c971fa845c
commit c466fc7d53
1 changed files with 1 additions and 1 deletions

View File

@ -2121,7 +2121,7 @@ ecore_x_e_window_rotation_available_rotations_get(Ecore_X_Window win,
if (!ecore_x_window_prop_property_get(win,
ECORE_X_ATOM_E_WINDOW_ROTATION_AVAILABLE_LIST,
XA_CARDINAL, 32, &data, &num))
XCB_ATOM_CARDINAL, 32, &data, &num))
return EINA_FALSE;
*count = num;