systray: Fix duplicate structure name when including EGL headers

When we include support (in the wayland compositor) for compiling with
EGL, the inclusion of the EGL headers cause a conflict with the
Status structure name in this module, so lets rename it.

@fix

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2014-06-25 09:44:06 -04:00
parent 5bbedc3013
commit 2ad62d1b31
1 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ typedef enum {
STATUS_PASSIVE,
STATUS_ATTENTION,
STATUS_LAST
} Status;
} Tray_Status;
typedef struct _Notifier_Data
{
@ -47,7 +47,7 @@ struct _Notifier_Item
const char *path;
Eldbus_Proxy *proxy;
Category category;
Status status;
Tray_Status status;
E_DBusMenu_Item *dbus_item;
const char *id;
const char *title;