From fd60abaa0c88a37686ea539d452899806fd25480 Mon Sep 17 00:00:00 2001 From: Vincent Hamm Date: Fri, 15 Aug 2003 19:41:26 +0000 Subject: [PATCH] renamed all .cc to cpp and all .hh to .h --- actor.cc => actor.cpp | 10 +++++----- actor.hh => actor.h | 10 +++++----- bitmap.cc => bitmap.cpp | 6 +++--- bitmap.hh => bitmap.h | 6 +++--- bits.hh => bits.h | 6 +++--- color.hh => color.h | 4 ++-- colormap.hh => colormap.h | 8 ++++---- costume.cc => costume.cpp | 20 ++++++++++---------- costume.hh => costume.h | 6 +++--- debug.cc => debug.cpp | 2 +- debug.hh => debug.h | 4 ++-- engine.cc => engine.cpp | 10 +++++----- engine.hh => engine.h | 6 +++--- grimdialog.htm | 6 +++--- hash_map.hh => hash_map.h | 0 keyframe.cc => keyframe.cpp | 8 ++++---- keyframe.hh => keyframe.h | 10 +++++----- lab.cc => lab.cpp | 4 ++-- lab.hh => lab.h | 6 +++--- localize.cc => localize.cpp | 6 +++--- localize.hh => localize.h | 6 +++--- lua.cc => lua.cpp | 22 +++++++++++----------- lua.hh => lua.h | 0 main.cc => main.cpp | 14 +++++++------- material.cc => material.cpp | 8 ++++---- material.hh => material.h | 6 +++--- mixer.cc => mixer.cpp | 6 +++--- mixer.hh => mixer.h | 6 +++--- model.cc => model.cpp | 12 ++++++------ model.hh => model.h | 8 ++++---- registry.cc => registry.cpp | 4 ++-- registry.hh => registry.h | 0 resource.cc => resource.cpp | 20 ++++++++++---------- resource.hh => resource.h | 8 ++++---- scene.cc => scene.cpp | 14 +++++++------- scene.hh => scene.h | 10 +++++----- sound.cc => sound.cpp | 6 +++--- sound.hh => sound.h | 6 +++--- textsplit.cc => textsplit.cpp | 4 ++-- textsplit.hh => textsplit.h | 0 vector3d.hh => vector3d.h | 0 41 files changed, 149 insertions(+), 149 deletions(-) rename actor.cc => actor.cpp (97%) rename actor.hh => actor.h (96%) rename bitmap.cc => bitmap.cpp (98%) rename bitmap.hh => bitmap.h (96%) rename bits.hh => bits.h (97%) rename color.hh => color.h (97%) rename colormap.hh => colormap.h (94%) rename costume.cc => costume.cpp (98%) rename costume.hh => costume.h (97%) rename debug.cc => debug.cpp (98%) rename debug.hh => debug.h (96%) rename engine.cc => engine.cpp (97%) rename engine.hh => engine.h (98%) rename hash_map.hh => hash_map.h (100%) rename keyframe.cc => keyframe.cpp (98%) rename keyframe.hh => keyframe.h (94%) rename lab.cc => lab.cpp (98%) rename lab.hh => lab.h (97%) rename localize.cc => localize.cpp (97%) rename localize.hh => localize.h (94%) rename lua.cc => lua.cpp (99%) rename lua.hh => lua.h (100%) rename main.cc => main.cpp (93%) rename material.cc => material.cpp (96%) rename material.hh => material.h (95%) rename mixer.cc => mixer.cpp (99%) rename mixer.hh => mixer.h (96%) rename model.cc => model.cpp (99%) rename model.hh => model.h (97%) rename registry.cc => registry.cpp (98%) rename registry.hh => registry.h (100%) rename resource.cc => resource.cpp (96%) rename resource.hh => resource.h (97%) rename scene.cc => scene.cpp (97%) rename scene.hh => scene.h (96%) rename sound.cc => sound.cpp (99%) rename sound.hh => sound.h (95%) rename textsplit.cc => textsplit.cpp (98%) rename textsplit.hh => textsplit.h (100%) rename vector3d.hh => vector3d.h (100%) diff --git a/actor.cc b/actor.cpp similarity index 97% rename from actor.cc rename to actor.cpp index 5a4b3c3d2e0..e428c8c32b1 100644 --- a/actor.cc +++ b/actor.cpp @@ -15,11 +15,11 @@ // License along with this library; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -#include "actor.hh" -#include "engine.hh" -#include "costume.hh" -#include "sound.hh" -#include "mixer.hh" +#include "actor.h" +#include "engine.h" +#include "costume.h" +#include "sound.h" +#include "mixer.h" #include #include #include diff --git a/actor.hh b/actor.h similarity index 96% rename from actor.hh rename to actor.h index 7d2150d1a99..eca5e2a541a 100644 --- a/actor.hh +++ b/actor.h @@ -15,12 +15,12 @@ // License along with this library; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -#ifndef ACTOR_HH -#define ACTOR_HH +#ifndef ACTOR_H +#define ACTOR_H -#include "color.hh" -#include "vector3d.hh" -#include "resource.hh" +#include "color.h" +#include "vector3d.h" +#include "resource.h" #include #include diff --git a/bitmap.cc b/bitmap.cpp similarity index 98% rename from bitmap.cc rename to bitmap.cpp index a7d2b88abc2..7649363c8d3 100644 --- a/bitmap.cc +++ b/bitmap.cpp @@ -19,9 +19,9 @@ #include #include #include -#include "bitmap.hh" -#include "bits.hh" -#include "debug.hh" +#include "bitmap.h" +#include "bits.h" +#include "debug.h" static void decompress_codec3(const char *compressed, char *result); diff --git a/bitmap.hh b/bitmap.h similarity index 96% rename from bitmap.hh rename to bitmap.h index 45bf19c25f7..0502e651542 100644 --- a/bitmap.hh +++ b/bitmap.h @@ -15,10 +15,10 @@ // License along with this library; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -#ifndef BITMAP_HH -#define BITMAP_HH +#ifndef BITMAP_H +#define BITMAP_H -#include "resource.hh" +#include "resource.h" #include class Bitmap : public Resource { diff --git a/bits.hh b/bits.h similarity index 97% rename from bits.hh rename to bits.h index 06b6c943a5d..a69f660c61f 100644 --- a/bits.hh +++ b/bits.h @@ -15,12 +15,12 @@ // License along with this library; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -#ifndef BITS_HH -#define BITS_HH +#ifndef BITS_H +#define BITS_H #include #include -#include "vector3d.hh" +#include "vector3d.h" inline uint8_t get_uint8(const char *data) { return *(reinterpret_cast(data)); diff --git a/color.hh b/color.h similarity index 97% rename from color.hh rename to color.h index a76bfe65ec3..9c96e8a6d09 100644 --- a/color.hh +++ b/color.h @@ -15,8 +15,8 @@ // License along with this library; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -#ifndef COLOR_HH -#define COLOR_HH +#ifndef COLOR_H +#define COLOR_H class Color { public: diff --git a/colormap.hh b/colormap.h similarity index 94% rename from colormap.hh rename to colormap.h index d68a2833e0a..589b3ff2681 100644 --- a/colormap.hh +++ b/colormap.h @@ -15,11 +15,11 @@ // License along with this library; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -#ifndef COLORMAP_HH -#define COLORMAP_HH +#ifndef COLORMAP_H +#define COLORMAP_H -#include "debug.hh" -#include "resource.hh" +#include "debug.h" +#include "resource.h" #include class Colormap : public Resource { diff --git a/costume.cc b/costume.cpp similarity index 98% rename from costume.cc rename to costume.cpp index 3c8fd8d6f86..4831da50599 100644 --- a/costume.cc +++ b/costume.cpp @@ -15,16 +15,16 @@ // License along with this library; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -#include "costume.hh" -#include "textsplit.hh" -#include "debug.hh" -#include "engine.hh" -#include "colormap.hh" -#include "keyframe.hh" -#include "model.hh" -#include "lua.hh" -#include "sound.hh" -#include "mixer.hh" +#include "costume.h" +#include "textsplit.h" +#include "debug.h" +#include "engine.h" +#include "colormap.h" +#include "keyframe.h" +#include "model.h" +#include "lua.h" +#include "sound.h" +#include "mixer.h" #include #include #include diff --git a/costume.hh b/costume.h similarity index 97% rename from costume.hh rename to costume.h index 4da3b2b31d7..455e4c395bb 100644 --- a/costume.hh +++ b/costume.h @@ -15,10 +15,10 @@ // License along with this library; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -#ifndef COSTUME_HH -#define COSTUME_HH +#ifndef COSTUME_H +#define COSTUME_H -#include "resource.hh" +#include "resource.h" class TextSplitter; class Actor; diff --git a/debug.cc b/debug.cpp similarity index 98% rename from debug.cc rename to debug.cpp index c17ab591dfd..39a4111e0dc 100644 --- a/debug.cc +++ b/debug.cpp @@ -15,7 +15,7 @@ // License along with this library; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -#include "debug.hh" +#include "debug.h" #include #include #include diff --git a/debug.hh b/debug.h similarity index 96% rename from debug.hh rename to debug.h index 8920bfe2228..6f204c97301 100644 --- a/debug.hh +++ b/debug.h @@ -15,8 +15,8 @@ // License along with this library; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -#ifndef DEBUG_HH -#define DEBUG_HH +#ifndef DEBUG_H +#define DEBUG_H void warning(const char *fmt, ...); void error(const char *fmt, ...); diff --git a/engine.cc b/engine.cpp similarity index 97% rename from engine.cc rename to engine.cpp index bbece62b4d3..9556d1bae22 100644 --- a/engine.cc +++ b/engine.cpp @@ -15,11 +15,11 @@ // License along with this library; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -#include "engine.hh" -#include "scene.hh" -#include "lua.hh" -#include "colormap.hh" -#include "actor.hh" +#include "engine.h" +#include "scene.h" +#include "lua.h" +#include "colormap.h" +#include "actor.h" #include #include #include diff --git a/engine.hh b/engine.h similarity index 98% rename from engine.hh rename to engine.h index e7525e3cc5e..92d7efd75cb 100644 --- a/engine.hh +++ b/engine.h @@ -15,10 +15,10 @@ // License along with this library; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -#ifndef ENGINE_HH -#define ENGINE_HH +#ifndef ENGINE_H +#define ENGINE_H -#include "scene.hh" +#include "scene.h" #include #include #include diff --git a/grimdialog.htm b/grimdialog.htm index c78a53bdca7..d63dd6f8784 100644 --- a/grimdialog.htm +++ b/grimdialog.htm @@ -1,11 +1,11 @@ -Grim Fandango Dialog Transcript -

Grim Fandango Dialog Transcript
© LucasArts Entertainment Company LLC. All rights reserved.


+Transcription des dialogues de Grim Fandango +

Transcription des dialogues de Grim Fandango
© LucasArts Entertainment Company LLC. Tous droits réservés.




(Introduction)


-

INT. Manny's Office DAY

+

INT. Bureau de Manny JOUR


Manny
diff --git a/hash_map.hh b/hash_map.h similarity index 100% rename from hash_map.hh rename to hash_map.h diff --git a/keyframe.cc b/keyframe.cpp similarity index 98% rename from keyframe.cc rename to keyframe.cpp index 3ce48a457f9..ea61ecbe51f 100644 --- a/keyframe.cc +++ b/keyframe.cpp @@ -15,10 +15,10 @@ // License along with this library; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -#include "keyframe.hh" -#include "debug.hh" -#include "bits.hh" -#include "textsplit.hh" +#include "keyframe.h" +#include "debug.h" +#include "bits.h" +#include "textsplit.h" #include KeyframeAnim::KeyframeAnim(const char *filename, const char *data, int len) : diff --git a/keyframe.hh b/keyframe.h similarity index 94% rename from keyframe.hh rename to keyframe.h index 46886f3667e..3093d22b809 100644 --- a/keyframe.hh +++ b/keyframe.h @@ -15,12 +15,12 @@ // License along with this library; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -#ifndef KEYFRAME_HH -#define KEYFRAME_HH +#ifndef KEYFRAME_H +#define KEYFRAME_H -#include "vector3d.hh" -#include "resource.hh" -#include "model.hh" +#include "vector3d.h" +#include "resource.h" +#include "model.h" class TextSplitter; diff --git a/lab.cc b/lab.cpp similarity index 98% rename from lab.cc rename to lab.cpp index dd5982e00e0..a1bf3d73247 100644 --- a/lab.cc +++ b/lab.cpp @@ -15,8 +15,8 @@ // License along with this library; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -#include "lab.hh" -#include "bits.hh" +#include "lab.h" +#include "bits.h" #include #include #include diff --git a/lab.hh b/lab.h similarity index 97% rename from lab.hh rename to lab.h index 2d308ea5eb7..8051747f295 100644 --- a/lab.hh +++ b/lab.h @@ -15,13 +15,13 @@ // License along with this library; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -#ifndef LAB_HH -#define LAB_HH +#ifndef LAB_H +#define LAB_H #include #include #include -#include "hash_map.hh" +#include "hash_map.h" class Block { public: diff --git a/localize.cc b/localize.cpp similarity index 97% rename from localize.cc rename to localize.cpp index 8b84a5e83de..0189e468bc3 100644 --- a/localize.cc +++ b/localize.cpp @@ -15,9 +15,9 @@ // License along with this library; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -#include "localize.hh" -#include "registry.hh" -#include "debug.hh" +#include "localize.h" +#include "registry.h" +#include "debug.h" #include #include diff --git a/localize.hh b/localize.h similarity index 94% rename from localize.hh rename to localize.h index 37732e32245..63bbf47de2a 100644 --- a/localize.hh +++ b/localize.h @@ -15,10 +15,10 @@ // License along with this library; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -#ifndef LOCALIZE_HH -#define LOCALIZE_HH +#ifndef LOCALIZE_H +#define LOCALIZE_H -#include "hash_map.hh" +#include "hash_map.h" class Localizer { public: diff --git a/lua.cc b/lua.cpp similarity index 99% rename from lua.cc rename to lua.cpp index fdb1dfe78cf..895531fa983 100644 --- a/lua.cc +++ b/lua.cpp @@ -15,17 +15,17 @@ // License along with this library; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -#include "lua.hh" -#include "resource.hh" -#include "debug.hh" -#include "actor.hh" -#include "registry.hh" -#include "localize.hh" -#include "color.hh" -#include "costume.hh" -#include "engine.hh" -#include "mixer.hh" -#include "sound.hh" +#include "lua.h" +#include "resource.h" +#include "debug.h" +#include "actor.h" +#include "registry.h" +#include "localize.h" +#include "color.h" +#include "costume.h" +#include "engine.h" +#include "mixer.h" +#include "sound.h" #include #include #include diff --git a/lua.hh b/lua.h similarity index 100% rename from lua.hh rename to lua.h diff --git a/main.cc b/main.cpp similarity index 93% rename from main.cc rename to main.cpp index 708f5aa526b..24f9e594999 100644 --- a/main.cc +++ b/main.cpp @@ -18,13 +18,13 @@ #include #include #include -#include "bitmap.hh" -#include "resource.hh" -#include "debug.hh" -#include "lua.hh" -#include "registry.hh" -#include "engine.hh" -#include "mixer.hh" +#include "bitmap.h" +#include "resource.h" +#include "debug.h" +#include "lua.h" +#include "registry.h" +#include "engine.h" +#include "mixer.h" #include static void saveRegistry() { diff --git a/material.cc b/material.cpp similarity index 96% rename from material.cc rename to material.cpp index db76c8f4e57..debd2d595ee 100644 --- a/material.cc +++ b/material.cpp @@ -15,10 +15,10 @@ // License along with this library; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -#include "material.hh" -#include "colormap.hh" -#include "bits.hh" -#include "debug.hh" +#include "material.h" +#include "colormap.h" +#include "bits.h" +#include "debug.h" Material::Material(const char *filename, const char *data, int len, const Colormap &cmap) : diff --git a/material.hh b/material.h similarity index 95% rename from material.hh rename to material.h index 82c67b1dcfb..0efa1dda1b1 100644 --- a/material.hh +++ b/material.h @@ -15,10 +15,10 @@ // License along with this library; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -#ifndef MATERIAL_HH -#define MATERIAL_HH +#ifndef MATERIAL_H +#define MATERIAL_H -#include "resource.hh" +#include "resource.h" #include #include #include diff --git a/mixer.cc b/mixer.cpp similarity index 99% rename from mixer.cc rename to mixer.cpp index 07120281826..5b02810782b 100644 --- a/mixer.cc +++ b/mixer.cpp @@ -15,9 +15,9 @@ // License along with this library; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -#include "mixer.hh" -#include "sound.hh" -#include "debug.hh" +#include "mixer.h" +#include "sound.h" +#include "debug.h" #include #include diff --git a/mixer.hh b/mixer.h similarity index 96% rename from mixer.hh rename to mixer.h index f65f3618515..a8755eda7dc 100644 --- a/mixer.hh +++ b/mixer.h @@ -15,10 +15,10 @@ // License along with this library; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -#ifndef MIXER_HH -#define MIXER_HH +#ifndef MIXER_H +#define MIXER_H -#include "resource.hh" +#include "resource.h" #include #include diff --git a/model.cc b/model.cpp similarity index 99% rename from model.cc rename to model.cpp index 4d6f58d7fa6..e156a48e127 100644 --- a/model.cc +++ b/model.cpp @@ -15,12 +15,12 @@ // License along with this library; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -#include "model.hh" -#include "bits.hh" -#include "resource.hh" -#include "material.hh" -#include "debug.hh" -#include "textsplit.hh" +#include "model.h" +#include "bits.h" +#include "resource.h" +#include "material.h" +#include "debug.h" +#include "textsplit.h" #include #include #include diff --git a/model.hh b/model.h similarity index 97% rename from model.hh rename to model.h index 1ac7923fb74..51a8d3fae23 100644 --- a/model.hh +++ b/model.h @@ -15,11 +15,11 @@ // License along with this library; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -#ifndef MODEL_HH -#define MODEL_HH +#ifndef MODEL_H +#define MODEL_H -#include "vector3d.hh" -#include "resource.hh" +#include "vector3d.h" +#include "resource.h" #include class Colormap; diff --git a/registry.cc b/registry.cpp similarity index 98% rename from registry.cc rename to registry.cpp index 705e66ea379..8eec74f3179 100644 --- a/registry.cc +++ b/registry.cpp @@ -15,8 +15,8 @@ // License along with this library; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -#include "registry.hh" -#include "debug.hh" +#include "registry.h" +#include "debug.h" #include Registry::Registry() : dirty_(false) { diff --git a/registry.hh b/registry.h similarity index 100% rename from registry.hh rename to registry.h diff --git a/resource.cc b/resource.cpp similarity index 96% rename from resource.cc rename to resource.cpp index 3fe25a45a7e..2365e6df5ba 100644 --- a/resource.cc +++ b/resource.cpp @@ -15,16 +15,16 @@ // License along with this library; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -#include "resource.hh" -#include "registry.hh" -#include "bitmap.hh" -#include "colormap.hh" -#include "costume.hh" -#include "keyframe.hh" -#include "material.hh" -#include "model.hh" -#include "sound.hh" -#include "debug.hh" +#include "resource.h" +#include "registry.h" +#include "bitmap.h" +#include "colormap.h" +#include "costume.h" +#include "keyframe.h" +#include "material.h" +#include "model.h" +#include "sound.h" +#include "debug.h" #include #include #include diff --git a/resource.hh b/resource.h similarity index 97% rename from resource.hh rename to resource.h index 8322190c30e..9e8f71f3f8a 100644 --- a/resource.hh +++ b/resource.h @@ -15,11 +15,11 @@ // License along with this library; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -#ifndef RESOURCE_HH -#define RESOURCE_HH +#ifndef RESOURCE_H +#define RESOURCE_H -#include "lab.hh" -#include "hash_map.hh" +#include "lab.h" +#include "hash_map.h" #include #include diff --git a/scene.cc b/scene.cpp similarity index 97% rename from scene.cc rename to scene.cpp index 24012c3dcdb..59f2ccf6299 100644 --- a/scene.cc +++ b/scene.cpp @@ -15,13 +15,13 @@ // License along with this library; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -#include "scene.hh" -#include "textsplit.hh" -#include "resource.hh" -#include "debug.hh" -#include "bitmap.hh" -#include "colormap.hh" -#include "vector3d.hh" +#include "scene.h" +#include "textsplit.h" +#include "resource.h" +#include "debug.h" +#include "bitmap.h" +#include "colormap.h" +#include "vector3d.h" #include #include #include diff --git a/scene.hh b/scene.h similarity index 96% rename from scene.hh rename to scene.h index 3a2c280981e..42308bb84bd 100644 --- a/scene.hh +++ b/scene.h @@ -15,12 +15,12 @@ // License along with this library; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -#ifndef SCENE_HH -#define SCENE_HH +#ifndef SCENE_H +#define SCENE_H -#include "vector3d.hh" -#include "bitmap.hh" -#include "color.hh" +#include "vector3d.h" +#include "bitmap.h" +#include "color.h" #include #include #include diff --git a/sound.cc b/sound.cpp similarity index 99% rename from sound.cc rename to sound.cpp index 004afe2986f..295444b6de9 100644 --- a/sound.cc +++ b/sound.cpp @@ -15,9 +15,9 @@ // License along with this library; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -#include "sound.hh" -#include "bits.hh" -#include "debug.hh" +#include "sound.h" +#include "bits.h" +#include "debug.h" #include #include diff --git a/sound.hh b/sound.h similarity index 95% rename from sound.hh rename to sound.h index bd0ca609194..bc1247619b5 100644 --- a/sound.hh +++ b/sound.h @@ -15,10 +15,10 @@ // License along with this library; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -#ifndef SOUND_HH -#define SOUND_HH +#ifndef SOUND_H +#define SOUND_H -#include "resource.hh" +#include "resource.h" #include class Sound : public Resource { diff --git a/textsplit.cc b/textsplit.cpp similarity index 98% rename from textsplit.cc rename to textsplit.cpp index b721184b186..bd53d6045ee 100644 --- a/textsplit.cc +++ b/textsplit.cpp @@ -15,8 +15,8 @@ // License along with this library; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -#include "textsplit.hh" -#include "debug.hh" +#include "textsplit.h" +#include "debug.h" #include #include #include diff --git a/textsplit.hh b/textsplit.h similarity index 100% rename from textsplit.hh rename to textsplit.h diff --git a/vector3d.hh b/vector3d.h similarity index 100% rename from vector3d.hh rename to vector3d.h