From 589f153073523f3acddbc89f5235db9f3f02afb2 Mon Sep 17 00:00:00 2001 From: Alex Szpakowski Date: Mon, 8 Jun 2015 23:44:18 -0300 Subject: [PATCH] Fixed a compiler warning. --- src/modules/window/sdl/Window.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/window/sdl/Window.h b/src/modules/window/sdl/Window.h index 2174f5489..9f1eda42a 100644 --- a/src/modules/window/sdl/Window.h +++ b/src/modules/window/sdl/Window.h @@ -100,7 +100,7 @@ public: bool showMessageBox(const std::string &title, const std::string &message, MessageBoxType type, bool attachtowindow); int showMessageBox(const MessageBoxData &data); - void requestAttention(bool continuous) override; + void requestAttention(bool continuous); static love::window::Window *createSingleton();