mirror of
https://github.com/1dot13/source.git
synced 2026-08-12 14:10:23 +02:00
Fixes Upper/Lower Casing for include paths (#487)
* Fixing upper/lower case for includes types.h, zconf.h and zlib.h were renamed so that global includes like Types.h are not used.
This commit is contained in:
@@ -3,12 +3,12 @@
|
||||
#include "Map Screen Interface.h"
|
||||
#include "personnel.h"
|
||||
#include "soldier profile type.h"
|
||||
#include "interface.h"
|
||||
#include "Interface.h"
|
||||
#include "Keys.h"
|
||||
#include "Merc Contract.h"
|
||||
#include "Campaign Types.h"
|
||||
#include "Finances.h"
|
||||
#include "Laptop.h"
|
||||
#include "finances.h"
|
||||
#include "laptop.h"
|
||||
|
||||
#include <vfs/Core/vfs_string.h>
|
||||
#include <vfs/Tools/vfs_tools.h>
|
||||
@@ -68,7 +68,7 @@ namespace Loc
|
||||
}
|
||||
|
||||
#include "Assignments.h"
|
||||
#include "History.h"
|
||||
#include "history.h"
|
||||
|
||||
template<typename T>
|
||||
void ExportSection(vfs::PropertyContainer& props, const vfs::String::char_t* section_name, T* strings, int min, int max)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#include "builddefines.h"
|
||||
#include "stdio.h"
|
||||
#include "Windows.h"
|
||||
#include "Types.h"
|
||||
#include "windows.h"
|
||||
#include "types.h"
|
||||
#include "Multi Language Graphic Utils.h"
|
||||
|
||||
//SB
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
//#pragma setlocale("CHINESE")
|
||||
|
||||
#if defined( CHINESE )
|
||||
#include "text.h"
|
||||
#include "Fileman.h"
|
||||
#include "Text.h"
|
||||
#include "FileMan.h"
|
||||
#include "Scheduling.h"
|
||||
#include "EditorMercs.h"
|
||||
#include "Item Statistics.h"
|
||||
|
||||
+2
-2
@@ -2,8 +2,8 @@
|
||||
//#pragma setlocale("DUTCH")
|
||||
|
||||
#if defined( DUTCH )
|
||||
#include "text.h"
|
||||
#include "Fileman.h"
|
||||
#include "Text.h"
|
||||
#include "FileMan.h"
|
||||
#include "Scheduling.h"
|
||||
#include "EditorMercs.h"
|
||||
#include "Item Statistics.h"
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
//#pragma setlocale("ENGLISH")
|
||||
|
||||
#if defined( ENGLISH )
|
||||
#include "text.h"
|
||||
#include "Fileman.h"
|
||||
#include "Text.h"
|
||||
#include "FileMan.h"
|
||||
#include "Scheduling.h"
|
||||
#include "EditorMercs.h"
|
||||
#include "Item Statistics.h"
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
//#pragma setlocale("FRENCH")
|
||||
|
||||
#ifdef FRENCH
|
||||
#include "text.h"
|
||||
#include "Fileman.h"
|
||||
#include "Text.h"
|
||||
#include "FileMan.h"
|
||||
#include "Scheduling.h"
|
||||
#include "EditorMercs.h"
|
||||
#include "Item Statistics.h"
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
//#pragma setlocale("GERMAN")
|
||||
|
||||
#ifdef GERMAN
|
||||
#include "text.h"
|
||||
#include "Fileman.h"
|
||||
#include "Text.h"
|
||||
#include "FileMan.h"
|
||||
#include "Scheduling.h"
|
||||
#include "EditorMercs.h"
|
||||
#include "Item Statistics.h"
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
//#pragma setlocale("ITALIAN")
|
||||
|
||||
#if defined( ITALIAN )
|
||||
#include "text.h"
|
||||
#include "Fileman.h"
|
||||
#include "Text.h"
|
||||
#include "FileMan.h"
|
||||
#include "Scheduling.h"
|
||||
#include "EditorMercs.h"
|
||||
#include "Item Statistics.h"
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
//#pragma setlocale("CHINESE")
|
||||
|
||||
#ifdef CHINESE
|
||||
#include "text.h"
|
||||
#include "Fileman.h"
|
||||
#include "Text.h"
|
||||
#include "FileMan.h"
|
||||
#endif
|
||||
|
||||
//suppress : warning LNK4221: no public symbols found; archive member will be inaccessible
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
//#pragma setlocale("DUTCH")
|
||||
|
||||
#ifdef DUTCH
|
||||
#include "text.h"
|
||||
#include "Fileman.h"
|
||||
#include "Text.h"
|
||||
#include "FileMan.h"
|
||||
#endif
|
||||
|
||||
//suppress : warning LNK4221: no public symbols found; archive member will be inaccessible
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
//#pragma setlocale("ENGLISH")
|
||||
|
||||
#ifdef ENGLISH
|
||||
#include "text.h"
|
||||
#include "Fileman.h"
|
||||
#include "Text.h"
|
||||
#include "FileMan.h"
|
||||
#endif
|
||||
|
||||
//suppress : warning LNK4221: no public symbols found; archive member will be inaccessible
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
//#pragma setlocale("FRENCH")
|
||||
|
||||
#ifdef FRENCH
|
||||
#include "text.h"
|
||||
#include "Fileman.h"
|
||||
#include "Text.h"
|
||||
#include "FileMan.h"
|
||||
#endif
|
||||
|
||||
//suppress : warning LNK4221: no public symbols found; archive member will be inaccessible
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
//#pragma setlocale("GERMAN")
|
||||
|
||||
#ifdef GERMAN
|
||||
#include "text.h"
|
||||
#include "Fileman.h"
|
||||
#include "Text.h"
|
||||
#include "FileMan.h"
|
||||
#endif
|
||||
|
||||
//suppress : warning LNK4221: no public symbols found; archive member will be inaccessible
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
//#pragma setlocale("ITALIAN")
|
||||
|
||||
#ifdef ITALIAN
|
||||
#include "text.h"
|
||||
#include "Fileman.h"
|
||||
#include "Text.h"
|
||||
#include "FileMan.h"
|
||||
#endif
|
||||
|
||||
//suppress : warning LNK4221: no public symbols found; archive member will be inaccessible
|
||||
|
||||
@@ -3,8 +3,8 @@
|
||||
//#pragma setlocale("POLISH")
|
||||
|
||||
#ifdef POLISH
|
||||
#include "text.h"
|
||||
#include "Fileman.h"
|
||||
#include "Text.h"
|
||||
#include "FileMan.h"
|
||||
#endif
|
||||
|
||||
//suppress : warning LNK4221: no public symbols found; archive member will be inaccessible
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
//#pragma setlocale("RUSSIAN")
|
||||
|
||||
#ifdef RUSSIAN
|
||||
#include "text.h"
|
||||
#include "Fileman.h"
|
||||
#include "Text.h"
|
||||
#include "FileMan.h"
|
||||
#endif
|
||||
|
||||
//suppress : warning LNK4221: no public symbols found; archive member will be inaccessible
|
||||
|
||||
@@ -3,8 +3,8 @@
|
||||
//#pragma setlocale("POLISH")
|
||||
|
||||
#if defined( POLISH )
|
||||
#include "text.h"
|
||||
#include "Fileman.h"
|
||||
#include "Text.h"
|
||||
#include "FileMan.h"
|
||||
#include "Scheduling.h"
|
||||
#include "EditorMercs.h"
|
||||
#include "Item Statistics.h"
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
//#pragma setlocale("RUSSIAN")
|
||||
|
||||
#if defined( RUSSIAN )
|
||||
#include "text.h"
|
||||
#include "Fileman.h"
|
||||
#include "Text.h"
|
||||
#include "FileMan.h"
|
||||
#include "Scheduling.h"
|
||||
#include "EditorMercs.h"
|
||||
#include "Item Statistics.h"
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
#ifndef __TEXT_H
|
||||
#define __TEXT_H
|
||||
|
||||
#include "items.h"
|
||||
#include "Items.h"
|
||||
#include "types.h"
|
||||
#include "mapscreen.h"
|
||||
#include "XML_Language.h"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#pragma once
|
||||
|
||||
#include <Types.h>
|
||||
#include <types.h>
|
||||
|
||||
namespace i18n {
|
||||
enum class Lang
|
||||
|
||||
Reference in New Issue
Block a user