els_cursor: Fix a compiler warning for Wayland support
authorYeongjong Lee <yj34.lee@samsung.com>
Mon, 17 Feb 2020 06:36:03 +0000 (15:36 +0900)
committerJongmin Lee <jm105.lee@samsung.com>
Mon, 17 Feb 2020 21:39:19 +0000 (06:39 +0900)
Summary:
`_curosors` is not used when Elementary is compiled for Wayland.
It Fixes a compiler warning.
```
../src/lib/elementary/els_cursor.c:46:26: warning: ‘_cursors’ defined but not used [-Wunused-variable]
 static struct _Cursor_Id _cursors[] =

```

Test Plan: meson build -Dx11=false -Dwl=true

Reviewers: zmike, Hermet, Jaehyun_Cho

Reviewed By: Hermet

Subscribers: cedric, #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D11360

src/lib/elementary/els_cursor.c

index 0d7aa0e..bce0ad6 100644 (file)
@@ -42,6 +42,7 @@ struct _Cursor_Id
 #  define CURSOR(_name, _id, _cid) { _name }
 #endif
 
+#if defined(HAVE_ELEMENTARY_X) || defined(HAVE_ELEMENTARY_COCOA) || defined(HAVE_ELEMENTARY_WIN32)
 /* Please keep order in sync with Ecore_X_Cursor.h values! */
 static struct _Cursor_Id _cursors[] =
 {
@@ -124,7 +125,6 @@ static struct _Cursor_Id _cursors[] =
    CURSOR(ELM_CURSOR_XTERM              , XTERM              , ECORE_COCOA_CURSOR_IBEAM)
 };
 
-#if defined(HAVE_ELEMENTARY_X) || defined(HAVE_ELEMENTARY_COCOA) || defined(HAVE_ELEMENTARY_WIN32)
 static const int _cursors_count = sizeof(_cursors)/sizeof(struct _Cursor_Id);
 #endif