rename drawable_unit.?pp -> unit_drawer.?pp, b/c of new contents

This commit is contained in:
Chris Beck 2014-06-24 13:20:13 -04:00
parent 663494f661
commit cf2651b5a7
8 changed files with 15 additions and 15 deletions

View File

@ -231,8 +231,6 @@
<Unit filename="..\..\src\display.hpp" />
<Unit filename="..\..\src\display_context.cpp" />
<Unit filename="..\..\src\display_context.hpp" />
<Unit filename="..\..\src\drawable_unit.cpp" />
<Unit filename="..\..\src\drawable_unit.hpp" />
<Unit filename="..\..\src\editor\action\action.cpp" />
<Unit filename="..\..\src\editor\action\action.hpp" />
<Unit filename="..\..\src\editor\action\action_base.hpp" />
@ -1035,6 +1033,8 @@
<Unit filename="..\..\src\unit_animation_component.hpp" />
<Unit filename="..\..\src\unit_display.cpp" />
<Unit filename="..\..\src\unit_display.hpp" />
<Unit filename="..\..\src\unit_drawer.cpp" />
<Unit filename="..\..\src\unit_drawer.hpp" />
<Unit filename="..\..\src\unit_formula_manager.cpp" />
<Unit filename="..\..\src\unit_formula_manager.hpp" />
<Unit filename="..\..\src\unit_frame.cpp" />

View File

@ -20116,14 +20116,6 @@
RelativePath="..\..\src\display_context.hpp"
>
</File>
<File
RelativePath="..\..\src\drawable_unit.cpp"
>
</File>
<File
RelativePath="..\..\src\drawable_unit.hpp"
>
</File>
<File
RelativePath="..\..\src\events.cpp"
>
@ -21168,6 +21160,14 @@
RelativePath="..\..\src\unit_display.hpp"
>
</File>
<File
RelativePath="..\..\src\unit_drawer.cpp"
>
</File>
<File
RelativePath="..\..\src\unit_drawer.hpp"
>
</File>
<File
RelativePath="..\..\src\unit_formula_manager.cpp"
>

View File

@ -700,7 +700,6 @@ set(wesnoth-main_SRC
controller_base.cpp
desktop_util.cpp
dialogs.cpp
drawable_unit.cpp
editor/action/action.cpp
editor/action/action_item.cpp
editor/action/action_label.cpp
@ -894,6 +893,7 @@ set(wesnoth-main_SRC
unit_animation.cpp
unit_animation_component.cpp
unit_display.cpp
unit_drawer.cpp
unit_formula_manager.cpp
unit_frame.cpp
unit_helper.cpp

View File

@ -233,7 +233,6 @@ wesnoth_sources = Split("""
controller_base.cpp
desktop_util.cpp
dialogs.cpp
drawable_unit.cpp
editor/action/action.cpp
editor/action/action_unit.cpp
editor/action/action_label.cpp
@ -527,6 +526,7 @@ wesnoth_sources = Split("""
unit_animation.cpp
unit_animation_component.cpp
unit_display.cpp
unit_drawer.cpp
unit_formula_manager.cpp
unit_frame.cpp
unit_helper.cpp

View File

@ -19,7 +19,6 @@
#include "arrow.hpp"
#include "cursor.hpp"
#include "drawable_unit.hpp"
#include "display.hpp"
#include "fake_unit_manager.hpp"
#include "game_preferences.hpp"
@ -44,6 +43,7 @@
#include "tod_manager.hpp"
#include "unit.hpp"
#include "unit_animation_component.hpp"
#include "unit_drawer.hpp"
#include "whiteboard/manager.hpp"
#include "SDL_image.h"

View File

@ -34,7 +34,6 @@ Growl_Delegate growl_obj;
#endif
#include "cursor.hpp"
#include "drawable_unit.hpp"
#include "fake_unit_manager.hpp"
#include "fake_unit_ptr.hpp"
#include "game_board.hpp"
@ -49,6 +48,7 @@ Growl_Delegate growl_obj;
#include "tod_manager.hpp"
#include "sound.hpp"
#include "unit.hpp"
#include "unit_drawer.hpp"
#include "whiteboard/manager.hpp"
#ifdef _WIN32
#include "windows_tray_notification.hpp"

View File

@ -12,7 +12,7 @@
See the COPYING file for more details.
*/
#include "drawable_unit.hpp"
#include "unit_drawer.hpp"
#include "display.hpp"
#include "display_context.hpp"