Fix references to sf::WindowBase::setMouseCursor

This function does exist in sf::Window via inheritence but it's
more accurate to refer to the base implementation in sf::WindowBase
This commit is contained in:
Chris Thrasher 2023-09-13 16:12:47 -06:00
parent d56e1838a0
commit f9e6f673dd

View File

@ -208,7 +208,7 @@ private:
////////////////////////////////////////////////////////////
/// \brief Get access to the underlying implementation
///
/// This is primarily designed for sf::Window::setMouseCursor,
/// This is primarily designed for sf::WindowBase::setMouseCursor,
/// hence the friendship.
///
/// \return a reference to the OS-specific implementation
@ -238,7 +238,7 @@ private:
///
/// After loading the cursor the graphical appearance
/// with either loadFromPixels() or loadFromSystem(), the
/// cursor can be changed with sf::Window::setMouseCursor().
/// cursor can be changed with sf::WindowBase::setMouseCursor().
///
/// The behaviour is undefined if the cursor is destroyed while
/// in use by the window.
@ -254,6 +254,6 @@ private:
/// window.setMouseCursor(cursor);
/// \endcode
///
/// \see sf::Window::setMouseCursor
/// \see sf::WindowBase::setMouseCursor
///
////////////////////////////////////////////////////////////