[client] wayland: use consistent naming in poll module

Some of the functions were named WaylandEpoll*, which is inconsistent.
This commit changed them to be WaylandPoll*.
This commit is contained in:
Quantum
2021-03-01 23:51:12 -05:00
committed by Geoffrey McRae
parent fc7dd7dbb7
commit 854b53e28c
3 changed files with 12 additions and 12 deletions

View File

@@ -229,8 +229,8 @@ int32_t waylandOutputGetScale(struct wl_output * output);
// poll module
bool waylandPollInit(void);
void waylandWait(unsigned int time);
bool waylandEpollRegister(int fd, WaylandPollCallback callback, void * opaque, uint32_t events);
bool waylandEpollUnregister(int fd);
bool waylandPollRegister(int fd, WaylandPollCallback callback, void * opaque, uint32_t events);
bool waylandPollUnregister(int fd);
// registry module
bool waylandRegistryInit(void);