Skip to content

Commit

Permalink
move notifications files to their own folder
Browse files Browse the repository at this point in the history
  • Loading branch information
cbeck88 committed Jun 27, 2014
1 parent 14fc744 commit d2edec5
Show file tree
Hide file tree
Showing 13 changed files with 17 additions and 17 deletions.
8 changes: 4 additions & 4 deletions projectfiles/CodeBlocks/wesnoth.cbp
Expand Up @@ -862,8 +862,8 @@
<Unit filename="..\..\src\network_asio.hpp" />
<Unit filename="..\..\src\network_worker.cpp" />
<Unit filename="..\..\src\network_worker.hpp" />
<Unit filename="..\..\src\notifications.cpp" />
<Unit filename="..\..\src\notifications.hpp" />
<Unit filename="..\..\src\notifications\notifications.cpp" />
<Unit filename="..\..\src\notifications\notifications.hpp" />
<Unit filename="..\..\src\overlay.hpp" />
<Unit filename="..\..\src\pathfind\astarsearch.cpp" />
<Unit filename="..\..\src\pathfind\pathfind.cpp" />
Expand Down Expand Up @@ -1121,8 +1121,8 @@
<Unit filename="..\..\src\widgets\textbox.hpp" />
<Unit filename="..\..\src\widgets\widget.cpp" />
<Unit filename="..\..\src\widgets\widget.hpp" />
<Unit filename="..\..\src\windows_tray_notification.cpp" />
<Unit filename="..\..\src\windows_tray_notification.hpp" />
<Unit filename="..\..\src\notifications\windows_tray_notification.cpp" />
<Unit filename="..\..\src\notifications\windows_tray_notification.hpp" />
<Unit filename="..\..\src\wml_exception.cpp" />
<Unit filename="..\..\src\wml_exception.hpp" />
<Unit filename="..\..\src\wml_separators.hpp" />
Expand Down
8 changes: 4 additions & 4 deletions projectfiles/VC9/wesnoth.vcproj
Expand Up @@ -20705,11 +20705,11 @@
>
</File>
<File
RelativePath="..\..\src\notifications.cpp"
RelativePath="..\..\src\notifications\notifications.cpp"
>
</File>
<File
RelativePath="..\..\src\notifications.hpp"
RelativePath="..\..\src\notifications\notifications.hpp"
>
</File>
<File
Expand Down Expand Up @@ -21281,11 +21281,11 @@
>
</File>
<File
RelativePath="..\..\src\windows_tray_notification.cpp"
RelativePath="..\..\src\notifications\windows_tray_notification.cpp"
>
</File>
<File
RelativePath="..\..\src\windows_tray_notification.hpp"
RelativePath="..\..\src\notifications\windows_tray_notification.hpp"
>
</File>
<File
Expand Down
4 changes: 2 additions & 2 deletions src/CMakeLists.txt
Expand Up @@ -844,7 +844,7 @@ set(wesnoth-main_SRC
multiplayer_ui.cpp
multiplayer_wait.cpp
network_asio.cpp
notifications.cpp
notifications/notifications.cpp
pathfind/pathfind.cpp
pathfind/teleport.cpp
persist_context.cpp
Expand Down Expand Up @@ -992,7 +992,7 @@ set(libwesnoth-game_STAT_SRC
if(MSVC)
set(libwesnoth-game_STAT_SRC
${libwesnoth-game_STAT_SRC}
windows_tray_notification.cpp
notifications/windows_tray_notification.cpp
)
endif(MSVC)

Expand Down
4 changes: 2 additions & 2 deletions src/SConscript
Expand Up @@ -478,7 +478,7 @@ wesnoth_sources = Split("""
multiplayer_ui.cpp
multiplayer_wait.cpp
network_asio.cpp
notifications.cpp
notifications/notifications.cpp
pathfind/pathfind.cpp
pathfind/teleport.cpp
persist_context.cpp
Expand Down Expand Up @@ -556,7 +556,7 @@ wesnoth_sources = Split("""
""")

if env["PLATFORM"] == "win32":
wesnoth_sources.append("windows_tray_notification.cpp")
wesnoth_sources.append("notifications/windows_tray_notification.cpp")

wesnoth_sources.extend(client_env.Object("game_preferences_display.cpp", EXTRA_DEFINE = env["PLATFORM"] != "win32" and "WESNOTH_PREFIX='\"$prefix\"'" or None))

Expand Down
2 changes: 1 addition & 1 deletion src/display_chat_manager.cpp
Expand Up @@ -21,7 +21,7 @@
#include "game_preferences.hpp"
#include "log.hpp"
#include "marked-up_text.hpp"
#include "notifications.hpp"
#include "notifications/notifications.hpp"
#include "sound.hpp"
#include "serialization/string_utils.hpp"

Expand Down
2 changes: 1 addition & 1 deletion src/game_display.cpp
Expand Up @@ -34,7 +34,7 @@
#include "map.hpp"
#include "map_label.hpp"
#include "marked-up_text.hpp"
#include "notifications.hpp"
#include "notifications/notifications.hpp"
#include "reports.hpp"
#include "resources.hpp"
#include "tod_manager.hpp"
Expand Down
2 changes: 1 addition & 1 deletion src/multiplayer_connect.cpp
Expand Up @@ -26,7 +26,7 @@
#include "gettext.hpp"
#include "log.hpp"
#include "map.hpp"
#include "notifications.hpp"
#include "notifications/notifications.hpp"
#include "wml_separators.hpp"
#include "sound.hpp"

Expand Down
2 changes: 1 addition & 1 deletion src/multiplayer_wait.cpp
Expand Up @@ -24,7 +24,7 @@
#include "marked-up_text.hpp"
#include "mp_game_utils.hpp"
#include "multiplayer_wait.hpp"
#include "notifications.hpp"
#include "notifications/notifications.hpp"
#include "resources.hpp"
#include "statistics.hpp"
#include "saved_game.hpp"
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/playmp_controller.cpp
Expand Up @@ -22,7 +22,7 @@
#include "game_end_exceptions.hpp"
#include "gettext.hpp"
#include "log.hpp"
#include "notifications.hpp"
#include "notifications/notifications.hpp"
#include "playturn.hpp"
#include "preferences.hpp"
#include "resources.hpp"
Expand Down

0 comments on commit d2edec5

Please sign in to comment.