From df284acefee7a11b8ccc7ca0ba1c472270896ce2 Mon Sep 17 00:00:00 2001 From: Chris Thrasher Date: Thu, 9 Nov 2023 16:41:59 -0700 Subject: [PATCH] Remove declaration of unimplemented function --- include/SFML/Window/Window.hpp | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/include/SFML/Window/Window.hpp b/include/SFML/Window/Window.hpp index d366c0622..c5286c987 100644 --- a/include/SFML/Window/Window.hpp +++ b/include/SFML/Window/Window.hpp @@ -258,20 +258,6 @@ public: void display(); private: - //////////////////////////////////////////////////////////// - /// \brief Processes an event before it is sent to the user - /// - /// This function is called every time an event is received - /// from the internal window (through pollEvent or waitEvent). - /// It filters out unwanted events, and performs whatever internal - /// stuff the window needs before the event is returned to the - /// user. - /// - /// \param event Event to filter - /// - //////////////////////////////////////////////////////////// - bool filterEvent(const Event& event); - //////////////////////////////////////////////////////////// /// \brief Perform some common internal initializations ///