Skip to content

Commit

Permalink
Added empty implementation to pure virtual function.
Browse files Browse the repository at this point in the history
  • Loading branch information
Rafał Borowiak committed Apr 25, 2017
1 parent a5ba68e commit 1ce06b5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/SFML/Window/RPi/WindowImplRPi.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -204,5 +204,10 @@ void WindowImplRPi::processEvents()
pushEvent( ev );
}

void WindowImplRPi::setMouseCursorGrabbed(bool grabbed)
{
//TODO: not implemented
}

} // namespace priv
} // namespace sf
2 changes: 2 additions & 0 deletions src/SFML/Window/RPi/WindowImplRPi.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@ class WindowImplRPi : public WindowImpl
////////////////////////////////////////////////////////////
WindowImplRPi(WindowHandle handle);

void setMouseCursorGrabbed(bool grabbed) override;

////////////////////////////////////////////////////////////
/// \brief Create the window implementation
///
Expand Down

0 comments on commit 1ce06b5

Please sign in to comment.