1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2026-01-04 19:43:13 +00:00

Rename components/fx files to follow naming conventions

This commit is contained in:
Alexei Kotov 2025-02-22 21:00:40 +03:00
parent 0254feefe3
commit 8b911ce3eb
7 changed files with 8 additions and 11 deletions

View file

@ -33,8 +33,6 @@ components/crashcatcher/windows_crashcatcher.hpp
components/crashcatcher/windows_crashmonitor.cpp
components/crashcatcher/windows_crashmonitor.hpp
components/crashcatcher/windows_crashshm.hpp
components/fx/lexer_types.hpp
components/fx/parse_constants.hpp
components/platform/file.posix.cpp
components/platform/file.stdio.cpp
components/platform/file.win32.cpp

View file

@ -173,7 +173,7 @@ add_component_dir(esm attr common defs esmcommon records util luascripts format
exteriorcelllocation
)
add_component_dir(fx pass technique lexer lexer_types parse_constants widgets stateupdater)
add_component_dir(fx pass technique lexer lexertypes parseconstants widgets stateupdater)
add_component_dir(std140 ubo)

View file

@ -6,7 +6,6 @@
#include <string>
#include <string_view>
#include <components/fx/lexer_types.hpp>
#include <components/misc/strings/format.hpp>
namespace fx

View file

@ -7,7 +7,7 @@
#include <string>
#include <string_view>
#include "lexer_types.hpp"
#include "lexertypes.hpp"
namespace fx
{

View file

@ -1,5 +1,5 @@
#ifndef OPENMW_COMPONENTS_FX_LEXER_TYPES_H
#define OPENMW_COMPONENTS_FX_LEXER_TYPES_H
#ifndef OPENMW_COMPONENTS_FX_LEXERTYPES_H
#define OPENMW_COMPONENTS_FX_LEXERTYPES_H
#include <string_view>
#include <variant>
@ -165,4 +165,4 @@ namespace fx
}
}
#endif
#endif

View file

@ -1,5 +1,5 @@
#ifndef OPENMW_COMPONENTS_FX_PARSE_CONSTANTS_H
#define OPENMW_COMPONENTS_FX_PARSE_CONSTANTS_H
#ifndef OPENMW_COMPONENTS_FX_PARSECONSTANTS_H
#define OPENMW_COMPONENTS_FX_PARSECONSTANTS_H
#include <array>
#include <string_view>

View file

@ -17,7 +17,7 @@
#include <components/stereo/multiview.hpp>
#include <components/vfs/manager.hpp>
#include "parse_constants.hpp"
#include "parseconstants.hpp"
namespace
{