Rename event_info.*p to event_handler.*p.

This commit is contained in:
Mark de Wever 2008-03-23 18:43:10 +00:00
parent 382e0c6a37
commit d6a6fd410c
4 changed files with 6 additions and 6 deletions

View File

@ -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"

View File

@ -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__

View File

@ -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"

View File

@ -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"