x11display: Remove incorrect INLINE marker on these methods

Closes #1026
This commit is contained in:
Brian Lach 2020-10-01 18:00:17 -04:00 committed by rdb
parent 442e855a61
commit 62225e441d
2 changed files with 3 additions and 3 deletions

View File

@ -384,7 +384,7 @@ x11GraphicsPipe::
/**
* Enables raw mouse mode for this display. Returns false if unsupported.
*/
INLINE bool x11GraphicsPipe::
bool x11GraphicsPipe::
enable_raw_mouse() {
if (_num_raw_mouse_windows > 0) {
// Already enabled by another window.

View File

@ -147,8 +147,8 @@ public:
INLINE bool supports_relative_mouse() const;
INLINE bool enable_dga_mouse();
INLINE void disable_dga_mouse();
INLINE bool enable_raw_mouse();
INLINE void disable_raw_mouse();
bool enable_raw_mouse();
void disable_raw_mouse();
static INLINE int disable_x_error_messages();
static INLINE int enable_x_error_messages();