Renamed platform.cpp/platform.h to Platform.cpp/Platform.h

The naming convention for the rest of the application is to start the file names with a capital letter.
This commit is contained in:
Leon Styhre 2020-06-21 12:26:21 +02:00
parent 98903892d7
commit 49161df0e6
12 changed files with 12 additions and 12 deletions

View file

@ -17,7 +17,7 @@
#include "FileSorts.h"
#include "Log.h"
#include "MameNames.h"
#include "platform.h"
#include "Platform.h"
#include "Scripting.h"
#include "SystemData.h"
#include "VolumeControl.h"

View file

@ -16,7 +16,7 @@
#include "FileSorts.h"
#include "Gamelist.h"
#include "Log.h"
#include "platform.h"
#include "Platform.h"
#include "Settings.h"
#include "ThemeData.h"
#include "views/UIModeController.h"

View file

@ -21,12 +21,12 @@
#include "views/gamelist/IGameListView.h"
#include "CollectionSystemManager.h"
#include "EmulationStation.h"
#include "Platform.h"
#include "Scripting.h"
#include "SystemData.h"
#include "VolumeControl.h"
#include <SDL_events.h>
#include <algorithm>
#include "platform.h"
GuiMenu::GuiMenu(
Window* window)

View file

@ -25,7 +25,7 @@
#include "InputManager.h"
#include "Log.h"
#include "MameNames.h"
#include "platform.h"
#include "Platform.h"
#include "PowerSaver.h"
#include "Settings.h"
#include "SystemData.h"

View file

@ -12,7 +12,7 @@ set(CORE_HEADERS
${CMAKE_CURRENT_SOURCE_DIR}/src/InputManager.h
${CMAKE_CURRENT_SOURCE_DIR}/src/Log.h
${CMAKE_CURRENT_SOURCE_DIR}/src/MameNames.h
${CMAKE_CURRENT_SOURCE_DIR}/src/platform.h
${CMAKE_CURRENT_SOURCE_DIR}/src/Platform.h
${CMAKE_CURRENT_SOURCE_DIR}/src/PowerSaver.h
${CMAKE_CURRENT_SOURCE_DIR}/src/Settings.h
${CMAKE_CURRENT_SOURCE_DIR}/src/Sound.h
@ -93,7 +93,7 @@ set(CORE_SOURCES
${CMAKE_CURRENT_SOURCE_DIR}/src/InputManager.cpp
${CMAKE_CURRENT_SOURCE_DIR}/src/Log.cpp
${CMAKE_CURRENT_SOURCE_DIR}/src/MameNames.cpp
${CMAKE_CURRENT_SOURCE_DIR}/src/platform.cpp
${CMAKE_CURRENT_SOURCE_DIR}/src/Platform.cpp
${CMAKE_CURRENT_SOURCE_DIR}/src/PowerSaver.cpp
${CMAKE_CURRENT_SOURCE_DIR}/src/Scripting.cpp
${CMAKE_CURRENT_SOURCE_DIR}/src/Settings.cpp

View file

@ -3,7 +3,7 @@
#include "utils/FileSystemUtil.h"
#include "CECInput.h"
#include "Log.h"
#include "platform.h"
#include "Platform.h"
#include "Scripting.h"
#include "Window.h"
#include <pugixml/src/pugixml.hpp>

View file

@ -1,7 +1,7 @@
#include "Log.h"
#include "utils/FileSystemUtil.h"
#include "platform.h"
#include "Platform.h"
#include <iostream>
#include <iomanip>

View file

@ -1,4 +1,4 @@
#include "platform.h"
#include "Platform.h"
#include <SDL_events.h>
#ifdef WIN32

View file

@ -1,6 +1,6 @@
#include "Scripting.h"
#include "Log.h"
#include "platform.h"
#include "Platform.h"
#include "utils/FileSystemUtil.h"
namespace Scripting

View file

@ -10,7 +10,7 @@
#include "utils/FileSystemUtil.h"
#include "Log.h"
#include "Scripting.h"
#include "platform.h"
#include "Platform.h"
#include <pugixml/src/pugixml.hpp>
#include <algorithm>
#include <vector>

View file

@ -5,7 +5,7 @@
#include "utils/FileSystemUtil.h"
#include "utils/StringUtil.h"
#include "Log.h"
#include "platform.h"
#include "Platform.h"
#include "Settings.h"
#include <pugixml/src/pugixml.hpp>
#include <algorithm>