From d6a6fd410c0bbb59798819d7a6fb1bd01433f2b2 Mon Sep 17 00:00:00 2001 From: Mark de Wever Date: Sun, 23 Mar 2008 18:43:10 +0000 Subject: [PATCH] Rename event_info.*p to event_handler.*p. --- src/gui/widgets/{event_info.cpp => event_handler.cpp} | 6 +++--- src/gui/widgets/{event_info.hpp => event_handler.hpp} | 2 +- src/gui/widgets/widget.hpp | 2 +- src/gui/widgets/window.hpp | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) rename src/gui/widgets/{event_info.cpp => event_handler.cpp} (99%) rename src/gui/widgets/{event_info.hpp => event_handler.hpp} (98%) diff --git a/src/gui/widgets/event_info.cpp b/src/gui/widgets/event_handler.cpp similarity index 99% rename from src/gui/widgets/event_info.cpp rename to src/gui/widgets/event_handler.cpp index 5e9c4be9d8e..b13581eb32e 100644 --- a/src/gui/widgets/event_info.cpp +++ b/src/gui/widgets/event_handler.cpp @@ -12,12 +12,12 @@ See the COPYING file for more details. */ -//! @file event_info.cpp -//! Implementation of event_info.hpp. +//! @file event_handler.cpp +//! Implementation of event_handler.hpp. //! //! More documentation at the end of the file. -#include "gui/widgets/event_info.hpp" +#include "gui/widgets/event_handler.hpp" #include "config.hpp" #include "events.hpp" diff --git a/src/gui/widgets/event_info.hpp b/src/gui/widgets/event_handler.hpp similarity index 98% rename from src/gui/widgets/event_info.hpp rename to src/gui/widgets/event_handler.hpp index b278601ff8f..8db690ae017 100644 --- a/src/gui/widgets/event_info.hpp +++ b/src/gui/widgets/event_handler.hpp @@ -12,7 +12,7 @@ See the COPYING file for more details. */ -//! @file event_info.hpp +//! @file event_handler.hpp //! Contains the information with an event. #ifndef __GUI_WIDGETS_EVENT_INFO_HPP_INCLUDED__ diff --git a/src/gui/widgets/widget.hpp b/src/gui/widgets/widget.hpp index d2e47c5d85f..c321c78182f 100644 --- a/src/gui/widgets/widget.hpp +++ b/src/gui/widgets/widget.hpp @@ -16,7 +16,7 @@ #define __GUI_WIDGETS_WIDGET_HPP_INCLUDED__ #include "gui/widgets/canvas.hpp" -#include "gui/widgets/event_info.hpp" +#include "gui/widgets/event_handler.hpp" #include "sdl_utils.hpp" #include "video.hpp" diff --git a/src/gui/widgets/window.hpp b/src/gui/widgets/window.hpp index 579cb25a3db..b658d08933c 100644 --- a/src/gui/widgets/window.hpp +++ b/src/gui/widgets/window.hpp @@ -20,7 +20,7 @@ #define __GUI_WIDGETS_WINDOW_HPP_INCLUDED__ #include "gui/widgets/canvas.hpp" -#include "gui/widgets/event_info.hpp" +#include "gui/widgets/event_handler.hpp" #include "gui/widgets/grid.hpp" #include "gui/widgets/settings.hpp"