Skip to content

Commit

Permalink
rename drawable_unit.?pp -> unit_drawer.?pp, b/c of new contents
Browse files Browse the repository at this point in the history
  • Loading branch information
cbeck88 committed Jun 24, 2014
1 parent 663494f commit cf2651b
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions projectfiles/CodeBlocks/wesnoth.cbp
Expand Up @@ -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" />
Expand Down Expand Up @@ -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" />
Expand Down
16 changes: 8 additions & 8 deletions projectfiles/VC9/wesnoth.vcproj
Expand Up @@ -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"
>
Expand Down Expand Up @@ -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"
>
Expand Down
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/SConscript
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/display.cpp
Expand Up @@ -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"
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/game_display.cpp
Expand Up @@ -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"
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/drawable_unit.cpp → src/unit_drawer.cpp
Expand Up @@ -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"
Expand Down
File renamed without changes.

0 comments on commit cf2651b

Please sign in to comment.