summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteven Noonan <steven@uplinklabs.net>2009-09-29 21:06:27 -0700
committerSteven Noonan <steven@uplinklabs.net>2009-09-29 21:11:42 -0700
commitda980e3a2354a885fdea2d9bde5ead5e2579a33e (patch)
tree5c74534543bdd8a7ffa4a6e9d426dbfa629b1b73
parentda6fbde7ef314141152c5d2c9a15e85116296ef2 (diff)
downloadcrawl-ref-da980e3a2354a885fdea2d9bde5ead5e2579a33e.tar.gz
crawl-ref-da980e3a2354a885fdea2d9bde5ead5e2579a33e.zip
Move 'FixAry.h' -> 'fixary.h', 'FixVec.h' -> 'fixvec.h' for file naming consistency
Signed-off-by: Steven Noonan <steven@uplinklabs.net>
-rw-r--r--crawl-ref/source/MSVC/crawl-ref.vcproj4
-rw-r--r--crawl-ref/source/dungeon.h4
-rw-r--r--crawl-ref/source/externs.h2
-rw-r--r--crawl-ref/source/files.h2
-rw-r--r--crawl-ref/source/fixary.h (renamed from crawl-ref/source/FixAry.h)4
-rw-r--r--crawl-ref/source/fixvec.h (renamed from crawl-ref/source/FixVec.h)2
-rw-r--r--crawl-ref/source/mapdef.h2
-rw-r--r--crawl-ref/source/maps.h2
-rw-r--r--crawl-ref/source/mgrow.h2
-rw-r--r--crawl-ref/source/monplace.h2
-rw-r--r--crawl-ref/source/spl-book.h2
-rw-r--r--crawl-ref/source/tilesdl.h2
-rw-r--r--crawl-ref/source/transfor.h2
-rw-r--r--crawl-ref/source/travel.cc2
14 files changed, 17 insertions, 17 deletions
diff --git a/crawl-ref/source/MSVC/crawl-ref.vcproj b/crawl-ref/source/MSVC/crawl-ref.vcproj
index f7570e1680..b81dc28a6c 100644
--- a/crawl-ref/source/MSVC/crawl-ref.vcproj
+++ b/crawl-ref/source/MSVC/crawl-ref.vcproj
@@ -388,11 +388,11 @@
>
</File>
<File
- RelativePath="..\FixAry.h"
+ RelativePath="..\fixary.h"
>
</File>
<File
- RelativePath="..\FixVec.h"
+ RelativePath="..\fixvec.h"
>
</File>
<File
diff --git a/crawl-ref/source/dungeon.h b/crawl-ref/source/dungeon.h
index cb9c4bdbda..6aaffcb517 100644
--- a/crawl-ref/source/dungeon.h
+++ b/crawl-ref/source/dungeon.h
@@ -10,8 +10,8 @@
#ifndef DUNGEON_H
#define DUNGEON_H
-#include "FixVec.h"
-#include "FixAry.h"
+#include "fixvec.h"
+#include "fixary.h"
#include "externs.h"
#include "terrain.h"
#include "travel.h"
diff --git a/crawl-ref/source/externs.h b/crawl-ref/source/externs.h
index 8fe8287323..1141e1134f 100644
--- a/crawl-ref/source/externs.h
+++ b/crawl-ref/source/externs.h
@@ -22,7 +22,7 @@
#include "defines.h"
#include "enum.h"
-#include "FixAry.h"
+#include "fixary.h"
#include "libutil.h"
#include "mpr.h"
#include "store.h"
diff --git a/crawl-ref/source/files.h b/crawl-ref/source/files.h
index 50da4cb0cc..ee81854fe8 100644
--- a/crawl-ref/source/files.h
+++ b/crawl-ref/source/files.h
@@ -11,7 +11,7 @@
#define FILES_H
#include "externs.h"
-#include "FixAry.h"
+#include "fixary.h"
#include "player.h"
#include <stdio.h>
#include <string>
diff --git a/crawl-ref/source/FixAry.h b/crawl-ref/source/fixary.h
index 55d32cb55a..4c5b3e2b3b 100644
--- a/crawl-ref/source/FixAry.h
+++ b/crawl-ref/source/fixary.h
@@ -1,5 +1,5 @@
/*
- * File: FixAry.h
+ * File: fixary.h
* Summary: Fixed size 2D vector class that asserts if you do something bad.
* Written by: Jesse Jones
*
@@ -9,7 +9,7 @@
#ifndef FIXARY_H
#define FIXARY_H
-#include "FixVec.h"
+#include "fixvec.h"
// ==========================================================================
diff --git a/crawl-ref/source/FixVec.h b/crawl-ref/source/fixvec.h
index c2647e2cf4..49c4a9fc4e 100644
--- a/crawl-ref/source/FixVec.h
+++ b/crawl-ref/source/fixvec.h
@@ -1,5 +1,5 @@
/*
- * File: FixVec.h
+ * File: fixvec.h
* Summary: Fixed size vector class that asserts if you do something bad.
* Written by: Jesse Jones
*
diff --git a/crawl-ref/source/mapdef.h b/crawl-ref/source/mapdef.h
index 3efffadb0f..8fc2695980 100644
--- a/crawl-ref/source/mapdef.h
+++ b/crawl-ref/source/mapdef.h
@@ -22,7 +22,7 @@
#include "externs.h"
#include "makeitem.h"
#include "travel.h"
-#include "FixAry.h"
+#include "fixary.h"
// [dshaligram] Maps can be mirrored; for every orientation, there must be
// a suitable mirror.
diff --git a/crawl-ref/source/maps.h b/crawl-ref/source/maps.h
index 6f3d07615a..94294de9ff 100644
--- a/crawl-ref/source/maps.h
+++ b/crawl-ref/source/maps.h
@@ -10,7 +10,7 @@
#ifndef MAPS_H
#define MAPS_H
-#include "FixVec.h"
+#include "fixvec.h"
#include "dungeon.h"
#include <vector>
diff --git a/crawl-ref/source/mgrow.h b/crawl-ref/source/mgrow.h
index f21dddc8e1..fb3ba8a2c4 100644
--- a/crawl-ref/source/mgrow.h
+++ b/crawl-ref/source/mgrow.h
@@ -10,7 +10,7 @@
#define __MGROW_H__
#include "AppHdr.h"
-#include "FixVec.h"
+#include "fixvec.h"
// Monster level-up data.
diff --git a/crawl-ref/source/monplace.h b/crawl-ref/source/monplace.h
index a895d88423..8dfab01b17 100644
--- a/crawl-ref/source/monplace.h
+++ b/crawl-ref/source/monplace.h
@@ -12,7 +12,7 @@
#include "enum.h"
#include "dungeon.h"
-#include "FixVec.h"
+#include "fixvec.h"
enum band_type
{
diff --git a/crawl-ref/source/spl-book.h b/crawl-ref/source/spl-book.h
index e8373e4e49..a5f896b15b 100644
--- a/crawl-ref/source/spl-book.h
+++ b/crawl-ref/source/spl-book.h
@@ -11,7 +11,7 @@
#define SPL_BOOK_H
#include "externs.h"
-#include "FixVec.h"
+#include "fixvec.h"
#define SPELLBOOK_SIZE 8
diff --git a/crawl-ref/source/tilesdl.h b/crawl-ref/source/tilesdl.h
index 69ead08b0d..867c1cf0df 100644
--- a/crawl-ref/source/tilesdl.h
+++ b/crawl-ref/source/tilesdl.h
@@ -10,7 +10,7 @@
#include "debug.h"
#include "externs.h"
-#include "FixVec.h"
+#include "fixvec.h"
#include "tilereg.h"
// This struct defines all of the state that any particular rendering needs.
diff --git a/crawl-ref/source/transfor.h b/crawl-ref/source/transfor.h
index 681f1e84f9..8d3b9bc331 100644
--- a/crawl-ref/source/transfor.h
+++ b/crawl-ref/source/transfor.h
@@ -12,7 +12,7 @@
#include <set>
-#include "FixVec.h"
+#include "fixvec.h"
#include "enum.h"
enum transformation_type
diff --git a/crawl-ref/source/travel.cc b/crawl-ref/source/travel.cc
index 275969420b..6b4b25527e 100644
--- a/crawl-ref/source/travel.cc
+++ b/crawl-ref/source/travel.cc
@@ -13,7 +13,7 @@
REVISION("$Rev$");
#include "files.h"
-#include "FixAry.h"
+#include "fixary.h"
#include "branch.h"
#include "command.h"
#include "cio.h"