diff options
Diffstat (limited to 'include/socketengine.h')
-rw-r--r-- | include/socketengine.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/socketengine.h b/include/socketengine.h index 7279ba3ad..c45249810 100644 --- a/include/socketengine.h +++ b/include/socketengine.h @@ -43,12 +43,12 @@ class CoreExport SocketEngineBase /** Mark a socket as writeable * @param s The socket */ - virtual void MarkWriteable(Socket *s) { } + virtual void MarkWritable(Socket *s) { } /** Unmark a socket as writeable * @param s The socket */ - virtual void ClearWriteable(Socket *s) { } + virtual void ClearWritable(Socket *s) { } /** Read from sockets and do things */ |