(svn r17597) -Codechange: rename namegen* to townname*

This commit is contained in:
smatz 2009-09-21 11:01:16 +00:00
parent 114d48e492
commit 662ef3173b
8 changed files with 34 additions and 34 deletions

View File

@ -611,10 +611,6 @@
RelativePath=".\..\src\music.cpp"
>
</File>
<File
RelativePath=".\..\src\namegen.cpp"
>
</File>
<File
RelativePath=".\..\src\network\network.cpp"
>
@ -739,6 +735,10 @@
RelativePath=".\..\src\tile_map.cpp"
>
</File>
<File
RelativePath=".\..\src\townname.cpp"
>
</File>
<File
RelativePath=".\..\src\vehicle.cpp"
>
@ -1119,10 +1119,6 @@
RelativePath=".\..\src\music.h"
>
</File>
<File
RelativePath=".\..\src\namegen_func.h"
>
</File>
<File
RelativePath=".\..\src\network\network.h"
>
@ -1527,6 +1523,10 @@
RelativePath=".\..\src\town.h"
>
</File>
<File
RelativePath=".\..\src\townname_func.h"
>
</File>
<File
RelativePath=".\..\src\town_type.h"
>
@ -2239,10 +2239,6 @@
RelativePath=".\..\src\table\landscape_sprite.h"
>
</File>
<File
RelativePath=".\..\src\table\namegen.h"
>
</File>
<File
RelativePath=".\..\src\table\palette_convert.h"
>
@ -2287,6 +2283,10 @@
RelativePath=".\..\src\..\objs\langs\table\strings.h"
>
</File>
<File
RelativePath=".\..\src\table\townname.h"
>
</File>
<File
RelativePath=".\..\src\table\town_land.h"
>

View File

@ -608,10 +608,6 @@
RelativePath=".\..\src\music.cpp"
>
</File>
<File
RelativePath=".\..\src\namegen.cpp"
>
</File>
<File
RelativePath=".\..\src\network\network.cpp"
>
@ -736,6 +732,10 @@
RelativePath=".\..\src\tile_map.cpp"
>
</File>
<File
RelativePath=".\..\src\townname.cpp"
>
</File>
<File
RelativePath=".\..\src\vehicle.cpp"
>
@ -1116,10 +1116,6 @@
RelativePath=".\..\src\music.h"
>
</File>
<File
RelativePath=".\..\src\namegen_func.h"
>
</File>
<File
RelativePath=".\..\src\network\network.h"
>
@ -1524,6 +1520,10 @@
RelativePath=".\..\src\town.h"
>
</File>
<File
RelativePath=".\..\src\townname_func.h"
>
</File>
<File
RelativePath=".\..\src\town_type.h"
>
@ -2236,10 +2236,6 @@
RelativePath=".\..\src\table\landscape_sprite.h"
>
</File>
<File
RelativePath=".\..\src\table\namegen.h"
>
</File>
<File
RelativePath=".\..\src\table\palette_convert.h"
>
@ -2284,6 +2280,10 @@
RelativePath=".\..\src\..\objs\langs\table\strings.h"
>
</File>
<File
RelativePath=".\..\src\table\townname.h"
>
</File>
<File
RelativePath=".\..\src\table\town_land.h"
>

View File

@ -38,7 +38,6 @@ map.cpp
misc.cpp
mixer.cpp
music.cpp
namegen.cpp
network/network.cpp
network/network_client.cpp
network/network_command.cpp
@ -72,6 +71,7 @@ subsidy.cpp
texteff.cpp
tgp.cpp
tile_map.cpp
townname.cpp
#if WIN32
#else
#if WINCE
@ -185,7 +185,6 @@ map_func.h
map_type.h
mixer.h
music.h
namegen_func.h
network/network.h
network/network_base.h
network/network_client.h
@ -287,6 +286,7 @@ tilehighlight_type.h
timetable.h
toolbar_gui.h
town.h
townname_func.h
town_type.h
track_func.h
track_type.h
@ -485,7 +485,6 @@ table/engines.h
table/genland.h
table/industry_land.h
table/landscape_sprite.h
table/namegen.h
table/palette_convert.h
table/palettes.h
table/pricebase.h
@ -497,6 +496,7 @@ table/sprites.h
table/station_land.h
table/strgen_tables.h
../objs/langs/table/strings.h
table/townname.h
table/town_land.h
table/track_land.h
table/train_cmd.h

View File

@ -35,7 +35,7 @@
#include "table/strings.h"
#include "../table/engines.h"
#include "../table/namegen.h"
#include "../table/townname.h"
static bool _read_ttdpatch_flags;

View File

@ -13,7 +13,7 @@
#include "openttd.h"
#include "currency.h"
#include "spritecache.h"
#include "namegen_func.h"
#include "townname_func.h"
#include "station_base.h"
#include "town.h"
#include "screenshot.h"

View File

@ -7,7 +7,7 @@
* See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
*/
/** @file table/namegen.h Namepart tables for the town name generator */
/** @file table/townname.h Namepart tables for the town name generator */
#include "../core/enum_type.hpp"

View File

@ -7,14 +7,14 @@
* See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
*/
/** @file namegen.cpp Town name generators. */
/** @file townname.cpp Town name generators. */
#include "stdafx.h"
#include "namegen_func.h"
#include "townname_func.h"
#include "string_func.h"
#include "core/alloc_func.hpp"
#include "table/namegen.h"
#include "table/townname.h"
/**

View File

@ -7,7 +7,7 @@
* See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
*/
/** @file namegen_func.h Town name generator stuff. */
/** @file townname_func.h Town name generator stuff. */
#ifndef NAMEGEN_FUNC_H
#define NAMEGEN_FUNC_H