[Scummvm-cvs-logs] scummvm master -> cd6ee0589d0556d3d9e81d835c8b900636083de5

salty-horse ori at avtalion.name
Thu Apr 28 11:25:10 CEST 2011


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
cd6ee0589d JANITORIAL: Format forward declarations to follow convention


Commit: cd6ee0589d0556d3d9e81d835c8b900636083de5
    https://github.com/scummvm/scummvm/commit/cd6ee0589d0556d3d9e81d835c8b900636083de5
Author: Ori Avtalion (ori at avtalion.name)
Date: 2011-04-28T02:20:34-07:00

Commit Message:
JANITORIAL: Format forward declarations to follow convention

Changed paths:
    audio/decoders/adpcm.h
    audio/decoders/aiff.h
    audio/decoders/flac.h
    audio/decoders/iff_sound.h
    audio/decoders/mac_snd.h
    audio/decoders/mp3.h
    audio/decoders/raw.h
    audio/decoders/vag.h
    audio/decoders/voc.h
    audio/decoders/vorbis.h
    audio/decoders/wave.h
    audio/mididrv.h
    backends/events/default/default-events.h
    backends/keymapper/remap-dialog.h
    backends/platform/ps2/systemps2.h
    backends/platform/psp/mp3.h
    base/plugins.h
    common/system.h
    engines/agi/agi.h
    engines/agos/midi.h
    engines/cine/sound.h
    engines/dialogs.h
    engines/draci/game.h
    engines/draci/script.h
    engines/engine.h
    engines/gob/dataio.h
    engines/gob/gob.h
    engines/gob/resources.h
    engines/gob/surface.h
    engines/gob/totfile.h
    engines/groovie/cursor.h
    engines/groovie/groovie.h
    engines/groovie/resource.h
    engines/groovie/vdx.h
    engines/lastexpress/data/snd.h
    engines/lure/disk.h
    engines/made/scriptfuncs.h
    engines/metaengine.h
    engines/mohawk/cursors.h
    engines/mohawk/graphics.h
    engines/mohawk/mohawk.h
    engines/mohawk/myst_state.h
    engines/parallaction/disk.h
    engines/queen/queen.h
    engines/queen/sound.h
    engines/sci/decompressor.h
    engines/sci/engine/state.h
    engines/sci/graphics/fontsjis.h
    engines/sci/resource_intern.h
    engines/scumm/dialogs.h
    engines/scumm/player_mod.h
    engines/scumm/player_nes.h
    engines/scumm/saveload.h
    engines/scumm/scumm.h
    engines/scumm/smush/channel.h
    engines/sky/compact.h
    engines/sky/control.h
    engines/sky/disk.h
    engines/sword1/control.h
    engines/sword1/sound.h
    engines/sword2/resman.h
    engines/tinsel/dialogs.h
    engines/tinsel/pcode.h
    engines/tinsel/timers.h
    engines/touche/midi.h
    graphics/fonts/winfont.h
    graphics/pict.h
    graphics/wincursor.h
    gui/ThemeLayout.h
    video/codecs/qdm2.h
    video/coktel_decoder.h
    video/flic_decoder.h
    video/mpeg_player.h
    video/qt_decoder.h
    video/smk_decoder.h
    video/video_decoder.h



diff --git a/audio/decoders/adpcm.h b/audio/decoders/adpcm.h
index f6b424c..b0f0e9e 100644
--- a/audio/decoders/adpcm.h
+++ b/audio/decoders/adpcm.h
@@ -40,7 +40,9 @@
 #include "common/scummsys.h"
 #include "common/types.h"
 
-namespace Common { class SeekableReadStream; }
+namespace Common {
+class SeekableReadStream;
+}
 
 
 namespace Audio {
diff --git a/audio/decoders/aiff.h b/audio/decoders/aiff.h
index 06c56ec..dddbffb 100644
--- a/audio/decoders/aiff.h
+++ b/audio/decoders/aiff.h
@@ -37,7 +37,9 @@
 #include "common/scummsys.h"
 #include "common/types.h"
 
-namespace Common { class SeekableReadStream; }
+namespace Common {
+class SeekableReadStream;
+}
 
 namespace Audio {
 
diff --git a/audio/decoders/flac.h b/audio/decoders/flac.h
index 17f95ec..211347a 100644
--- a/audio/decoders/flac.h
+++ b/audio/decoders/flac.h
@@ -49,7 +49,7 @@
 #ifdef USE_FLAC
 
 namespace Common {
-	class SeekableReadStream;
+class SeekableReadStream;
 }
 
 namespace Audio {
diff --git a/audio/decoders/iff_sound.h b/audio/decoders/iff_sound.h
index 4e53059..4d26b32 100644
--- a/audio/decoders/iff_sound.h
+++ b/audio/decoders/iff_sound.h
@@ -33,7 +33,7 @@
 #define SOUND_IFF_H
 
 namespace Common {
-	class ReadStream;
+class ReadStream;
 }
 
 namespace Audio {
diff --git a/audio/decoders/mac_snd.h b/audio/decoders/mac_snd.h
index 198a613..bf6331a 100644
--- a/audio/decoders/mac_snd.h
+++ b/audio/decoders/mac_snd.h
@@ -35,7 +35,9 @@
 #include "common/scummsys.h"
 #include "common/types.h"
 
-namespace Common { class SeekableReadStream; }
+namespace Common {
+class SeekableReadStream;
+}
 
 namespace Audio {
 
diff --git a/audio/decoders/mp3.h b/audio/decoders/mp3.h
index 72bc6e1..84f7fac 100644
--- a/audio/decoders/mp3.h
+++ b/audio/decoders/mp3.h
@@ -50,7 +50,7 @@
 #ifdef USE_MAD
 
 namespace Common {
-	class SeekableReadStream;
+class SeekableReadStream;
 }
 
 namespace Audio {
diff --git a/audio/decoders/raw.h b/audio/decoders/raw.h
index 3e94260..6434366 100644
--- a/audio/decoders/raw.h
+++ b/audio/decoders/raw.h
@@ -32,8 +32,9 @@
 #include "common/list.h"
 
 
-namespace Common { class SeekableReadStream; }
-
+namespace Common {
+class SeekableReadStream;
+}
 
 namespace Audio {
 
diff --git a/audio/decoders/vag.h b/audio/decoders/vag.h
index cdf91a8..4db9eee 100644
--- a/audio/decoders/vag.h
+++ b/audio/decoders/vag.h
@@ -35,7 +35,7 @@
 #define SOUND_VAG_H
 
 namespace Common {
-	class SeekableReadStream;
+class SeekableReadStream;
 }
 
 namespace Audio {
diff --git a/audio/decoders/voc.h b/audio/decoders/voc.h
index 82cc261..38250dc 100644
--- a/audio/decoders/voc.h
+++ b/audio/decoders/voc.h
@@ -41,8 +41,10 @@
 #include "common/scummsys.h"
 #include "common/types.h"
 
-namespace Common { class ReadStream; }
-namespace Common { class SeekableReadStream; }
+namespace Common {
+class ReadStream;
+class SeekableReadStream;
+}
 
 namespace Audio {
 
diff --git a/audio/decoders/vorbis.h b/audio/decoders/vorbis.h
index 7cc395c..9829f74 100644
--- a/audio/decoders/vorbis.h
+++ b/audio/decoders/vorbis.h
@@ -49,7 +49,7 @@
 #ifdef USE_VORBIS
 
 namespace Common {
-	class SeekableReadStream;
+class SeekableReadStream;
 }
 
 namespace Audio {
diff --git a/audio/decoders/wave.h b/audio/decoders/wave.h
index 2bdbe8f..33c3e79 100644
--- a/audio/decoders/wave.h
+++ b/audio/decoders/wave.h
@@ -43,7 +43,9 @@
 #include "common/scummsys.h"
 #include "common/types.h"
 
-namespace Common { class SeekableReadStream; }
+namespace Common {
+class SeekableReadStream;
+}
 
 namespace Audio {
 
diff --git a/audio/mididrv.h b/audio/mididrv.h
index 8d6f942..92fbb09 100644
--- a/audio/mididrv.h
+++ b/audio/mididrv.h
@@ -33,9 +33,11 @@ class MidiChannel;
 class MusicDevice;
 
 namespace Audio {
-	class Mixer;
+class Mixer;
+}
+namespace Common {
+class String;
 }
-namespace Common { class String; }
 
 /**
  * Music types that music drivers can implement and engines can rely on.
diff --git a/backends/events/default/default-events.h b/backends/events/default/default-events.h
index 06db1dc..73dc606 100644
--- a/backends/events/default/default-events.h
+++ b/backends/events/default/default-events.h
@@ -31,10 +31,10 @@
 
 namespace Common {
 #ifdef ENABLE_KEYMAPPER
-	class Keymapper;
+class Keymapper;
 #endif
 #ifdef ENABLE_VKEYBD
-	class VirtualKeyboard;
+class VirtualKeyboard;
 #endif
 }
 
diff --git a/backends/keymapper/remap-dialog.h b/backends/keymapper/remap-dialog.h
index 2c0e79a..c1b5760 100644
--- a/backends/keymapper/remap-dialog.h
+++ b/backends/keymapper/remap-dialog.h
@@ -33,8 +33,8 @@
 #include "gui/dialog.h"
 
 namespace GUI {
-	class PopupWidget;
-	class ScrollBarWidget;
+class PopupWidget;
+class ScrollBarWidget;
 }
 
 namespace Common {
diff --git a/backends/platform/ps2/systemps2.h b/backends/platform/ps2/systemps2.h
index 37575f3..c13dcb0 100644
--- a/backends/platform/ps2/systemps2.h
+++ b/backends/platform/ps2/systemps2.h
@@ -47,11 +47,11 @@ struct Ps2Mutex {
 };
 
 namespace Common {
-	class TimerManager;
+class TimerManager;
 };
 
 namespace Audio {
-	class MixerImpl;
+class MixerImpl;
 };
 
 class OSystem_PS2 : public BaseBackend, public PaletteManager {
diff --git a/backends/platform/psp/mp3.h b/backends/platform/psp/mp3.h
index 1d2fe5e..95491d5 100644
--- a/backends/platform/psp/mp3.h
+++ b/backends/platform/psp/mp3.h
@@ -30,7 +30,7 @@
 #include "common/scummsys.h"
 
 namespace Common {
-	class SeekableReadStream;
+class SeekableReadStream;
 }
 
 namespace Audio {
diff --git a/base/plugins.h b/base/plugins.h
index 976e606..22b2877 100644
--- a/base/plugins.h
+++ b/base/plugins.h
@@ -33,8 +33,8 @@
 #include "backends/plugins/elf/version.h"
 
 namespace Common {
-	class FSList;
-	class FSNode;
+class FSList;
+class FSNode;
 }
 
 
diff --git a/common/system.h b/common/system.h
index c487e72..a8372a1 100644
--- a/common/system.h
+++ b/common/system.h
@@ -35,7 +35,7 @@
 #include "graphics/pixelformat.h"
 
 namespace Audio {
-	class Mixer;
+class Mixer;
 }
 
 namespace Graphics {
@@ -43,14 +43,14 @@ namespace Graphics {
 }
 
 namespace Common {
-	struct Event;
-	class EventManager;
-	class SaveFileManager;
-	class SearchSet;
-	class TimerManager;
-	class SeekableReadStream;
-	class WriteStream;
-	class HardwareKeySet;
+struct Event;
+class EventManager;
+class SaveFileManager;
+class SearchSet;
+class TimerManager;
+class SeekableReadStream;
+class WriteStream;
+class HardwareKeySet;
 }
 
 class AudioCDManager;
diff --git a/engines/agi/agi.h b/engines/agi/agi.h
index aca0b32..70ffbf1 100644
--- a/engines/agi/agi.h
+++ b/engines/agi/agi.h
@@ -45,7 +45,9 @@
 #include "agi/sound.h"
 
 
-namespace Common { class RandomSource; }
+namespace Common {
+class RandomSource;
+}
 
 /**
  * This is the namespace of the AGI engine.
diff --git a/engines/agos/midi.h b/engines/agos/midi.h
index ad69a3d..40f54db 100644
--- a/engines/agos/midi.h
+++ b/engines/agos/midi.h
@@ -31,7 +31,7 @@
 #include "common/mutex.h"
 
 namespace Common {
-	class File;
+class File;
 }
 
 namespace AGOS {
diff --git a/engines/cine/sound.h b/engines/cine/sound.h
index e9a7979..7b506ab 100644
--- a/engines/cine/sound.h
+++ b/engines/cine/sound.h
@@ -30,7 +30,7 @@
 #include "audio/mixer.h"
 
 namespace Audio {
-	class AudioStream;
+class AudioStream;
 }
 
 namespace Cine {
diff --git a/engines/dialogs.h b/engines/dialogs.h
index 6e5338b..885e86a 100644
--- a/engines/dialogs.h
+++ b/engines/dialogs.h
@@ -31,9 +31,9 @@
 class Engine;
 
 namespace GUI {
-	class ButtonWidget;
-	class GraphicsWidget;
-	class SaveLoadChooser;
+class ButtonWidget;
+class GraphicsWidget;
+class SaveLoadChooser;
 }
 
 class MainMenuDialog : public GUI::Dialog {
diff --git a/engines/draci/game.h b/engines/draci/game.h
index 0ecbcf6..0b5b3a0 100644
--- a/engines/draci/game.h
+++ b/engines/draci/game.h
@@ -31,7 +31,7 @@
 #include "draci/walking.h"
 
 namespace Common {
-	class Serializer;
+class Serializer;
 }
 
 namespace Draci {
diff --git a/engines/draci/script.h b/engines/draci/script.h
index e816912..a75f6bc 100644
--- a/engines/draci/script.h
+++ b/engines/draci/script.h
@@ -30,7 +30,7 @@
 #include "common/stream.h"
 
 namespace Common {
-	class ReadStream;
+class ReadStream;
 }
 
 namespace Draci {
diff --git a/engines/engine.h b/engines/engine.h
index 168a1dc..adec62b 100644
--- a/engines/engine.h
+++ b/engines/engine.h
@@ -32,16 +32,16 @@
 class OSystem;
 
 namespace Audio {
-	class Mixer;
+class Mixer;
 }
 namespace Common {
-	class EventManager;
-	class SaveFileManager;
-	class TimerManager;
+class EventManager;
+class SaveFileManager;
+class TimerManager;
 }
 namespace GUI {
-	class Debugger;
-	class Dialog;
+class Debugger;
+class Dialog;
 }
 
 /**
diff --git a/engines/gob/dataio.h b/engines/gob/dataio.h
index 6e12d15..f2b39ae 100644
--- a/engines/gob/dataio.h
+++ b/engines/gob/dataio.h
@@ -33,7 +33,7 @@
 #include "common/file.h"
 
 namespace Common {
-	class SeekableReadStream;
+class SeekableReadStream;
 }
 
 namespace Gob {
diff --git a/engines/gob/gob.h b/engines/gob/gob.h
index 9bdbed4..57ad11c 100644
--- a/engines/gob/gob.h
+++ b/engines/gob/gob.h
@@ -35,7 +35,7 @@
 #include "gob/console.h"
 
 namespace GUI {
-	class StaticTextWidget;
+class StaticTextWidget;
 }
 
 /**
diff --git a/engines/gob/resources.h b/engines/gob/resources.h
index 9921dc6..dec64f6 100644
--- a/engines/gob/resources.h
+++ b/engines/gob/resources.h
@@ -29,7 +29,7 @@
 #include "common/str.h"
 
 namespace Common {
-	class SeekableReadStream;
+class SeekableReadStream;
 }
 
 namespace Gob {
diff --git a/engines/gob/surface.h b/engines/gob/surface.h
index 3dea18e..b84927a 100644
--- a/engines/gob/surface.h
+++ b/engines/gob/surface.h
@@ -34,7 +34,7 @@
 #include "graphics/iff.h"
 
 namespace Common {
-	class SeekableReadStream;
+class SeekableReadStream;
 }
 
 namespace Gob {
diff --git a/engines/gob/totfile.h b/engines/gob/totfile.h
index 211232f..ce46742 100644
--- a/engines/gob/totfile.h
+++ b/engines/gob/totfile.h
@@ -29,7 +29,7 @@
 #include "common/str.h"
 
 namespace Common {
-	class SeekableReadStream;
+class SeekableReadStream;
 }
 
 namespace Gob {
diff --git a/engines/groovie/cursor.h b/engines/groovie/cursor.h
index 7a1f3cc..e40dc0c 100644
--- a/engines/groovie/cursor.h
+++ b/engines/groovie/cursor.h
@@ -30,7 +30,7 @@
 #include "common/system.h"
 
 namespace Common {
-	class MacResManager;
+class MacResManager;
 }
 
 namespace Groovie {
diff --git a/engines/groovie/groovie.h b/engines/groovie/groovie.h
index f8fad8d..9335ffb 100644
--- a/engines/groovie/groovie.h
+++ b/engines/groovie/groovie.h
@@ -33,7 +33,7 @@
 #include "graphics/pixelformat.h"
 
 namespace Common {
-	class MacResManager;
+class MacResManager;
 }
 
 /**
diff --git a/engines/groovie/resource.h b/engines/groovie/resource.h
index 37fa50f..9c306be 100644
--- a/engines/groovie/resource.h
+++ b/engines/groovie/resource.h
@@ -27,7 +27,7 @@
 #define GROOVIE_RESOURCE_H
 
 namespace Common {
-	class MacResManager;
+class MacResManager;
 }
 
 namespace Groovie {
diff --git a/engines/groovie/vdx.h b/engines/groovie/vdx.h
index 38dd030..31c7606 100644
--- a/engines/groovie/vdx.h
+++ b/engines/groovie/vdx.h
@@ -29,7 +29,7 @@
 #include "groovie/player.h"
 
 namespace Common {
-	class ReadStream;
+class ReadStream;
 }
 
 namespace Groovie {
diff --git a/engines/lastexpress/data/snd.h b/engines/lastexpress/data/snd.h
index 2d28404..61d1c09 100644
--- a/engines/lastexpress/data/snd.h
+++ b/engines/lastexpress/data/snd.h
@@ -42,8 +42,8 @@
 #include "audio/mixer.h"
 
 namespace Audio {
-	class AudioStream;
-	class QueuingAudioStream;
+class AudioStream;
+class QueuingAudioStream;
 }
 
 namespace Common {
diff --git a/engines/lure/disk.h b/engines/lure/disk.h
index d2848cc..79aaf80 100644
--- a/engines/lure/disk.h
+++ b/engines/lure/disk.h
@@ -33,7 +33,7 @@
 #include "lure/res_struct.h"
 
 namespace Common {
-	class File;
+class File;
 }
 
 namespace Lure {
diff --git a/engines/made/scriptfuncs.h b/engines/made/scriptfuncs.h
index 3bed27c..b8b2a87 100644
--- a/engines/made/scriptfuncs.h
+++ b/engines/made/scriptfuncs.h
@@ -34,7 +34,7 @@
 #include "made/resource.h"
 
 namespace Audio {
-	class PCSpeaker;
+class PCSpeaker;
 }
 
 namespace Made {
diff --git a/engines/metaengine.h b/engines/metaengine.h
index 2afed07..ef34506 100644
--- a/engines/metaengine.h
+++ b/engines/metaengine.h
@@ -37,8 +37,8 @@ class Engine;
 class OSystem;
 
 namespace Common {
-	class FSList;
-	class String;
+class FSList;
+class String;
 }
 
 /**
diff --git a/engines/mohawk/cursors.h b/engines/mohawk/cursors.h
index f8a9429..1fb8b35 100644
--- a/engines/mohawk/cursors.h
+++ b/engines/mohawk/cursors.h
@@ -29,11 +29,11 @@
 #include "common/scummsys.h"
 
 namespace Common {
-	class MacResManager;
-	class NEResources;
-	class PEResources;
-	class SeekableReadStream;
-	class String;
+class MacResManager;
+class NEResources;
+class PEResources;
+class SeekableReadStream;
+class String;
 }
 
 #include "mohawk/resource.h"
diff --git a/engines/mohawk/graphics.h b/engines/mohawk/graphics.h
index 5cac68c..c7e9b98 100644
--- a/engines/mohawk/graphics.h
+++ b/engines/mohawk/graphics.h
@@ -33,7 +33,7 @@
 #include "graphics/pict.h"
 
 namespace Graphics {
-	class JPEG;
+class JPEG;
 }
 
 namespace Mohawk {
diff --git a/engines/mohawk/mohawk.h b/engines/mohawk/mohawk.h
index 1bad8a0..8a853d1 100644
--- a/engines/mohawk/mohawk.h
+++ b/engines/mohawk/mohawk.h
@@ -34,7 +34,7 @@
 class OSystem;
 
 namespace Common {
-	class SeekableReadStream;
+class SeekableReadStream;
 }
 
 /**
diff --git a/engines/mohawk/myst_state.h b/engines/mohawk/myst_state.h
index a543cb1..074c3e5 100644
--- a/engines/mohawk/myst_state.h
+++ b/engines/mohawk/myst_state.h
@@ -31,7 +31,7 @@
 #include "common/str.h"
 
 namespace Common {
-	class Serializer;
+class Serializer;
 }
 
 namespace Mohawk {
diff --git a/engines/parallaction/disk.h b/engines/parallaction/disk.h
index 8ff0efd..69d3215 100644
--- a/engines/parallaction/disk.h
+++ b/engines/parallaction/disk.h
@@ -34,7 +34,7 @@
 #include "graphics/iff.h"
 
 namespace Common {
-	class FSDirectory;
+class FSDirectory;
 }
 
 
diff --git a/engines/queen/queen.h b/engines/queen/queen.h
index 93d705b..6098a9f 100644
--- a/engines/queen/queen.h
+++ b/engines/queen/queen.h
@@ -30,7 +30,7 @@
 #include "common/random.h"
 
 namespace Common {
-	class SeekableReadStream;
+class SeekableReadStream;
 }
 
 #if defined(_WIN32_WCE) && (_WIN32_WCE <= 300)
diff --git a/engines/queen/sound.h b/engines/queen/sound.h
index cee0463..a89e345 100644
--- a/engines/queen/sound.h
+++ b/engines/queen/sound.h
@@ -32,7 +32,7 @@
 #include "queen/defs.h"
 
 namespace Common {
-	class File;
+class File;
 }
 
 namespace Queen {
diff --git a/engines/sci/decompressor.h b/engines/sci/decompressor.h
index 88e24fc..8b6f955 100644
--- a/engines/sci/decompressor.h
+++ b/engines/sci/decompressor.h
@@ -28,7 +28,9 @@
 
 #include "common/scummsys.h"
 
-namespace Common { class ReadStream; }
+namespace Common {
+class ReadStream;
+}
 
 namespace Sci {
 
diff --git a/engines/sci/engine/state.h b/engines/sci/engine/state.h
index d91118e..cd6d565 100644
--- a/engines/sci/engine/state.h
+++ b/engines/sci/engine/state.h
@@ -32,8 +32,8 @@
 #include "common/str-array.h"
 
 namespace Common {
-	class SeekableReadStream;
-	class WriteStream;
+class SeekableReadStream;
+class WriteStream;
 }
 
 #include "sci/sci.h"
diff --git a/engines/sci/graphics/fontsjis.h b/engines/sci/graphics/fontsjis.h
index 684e6ca..5538b5c 100644
--- a/engines/sci/graphics/fontsjis.h
+++ b/engines/sci/graphics/fontsjis.h
@@ -29,7 +29,7 @@
 #include "sci/graphics/helpers.h"
 
 namespace Graphics {
-	class FontSJIS;
+class FontSJIS;
 }
 
 namespace Sci {
diff --git a/engines/sci/resource_intern.h b/engines/sci/resource_intern.h
index 98cca62..969e250 100644
--- a/engines/sci/resource_intern.h
+++ b/engines/sci/resource_intern.h
@@ -29,7 +29,7 @@
 #include "sci/resource.h"
 
 namespace Common {
-	class MacResManager;
+class MacResManager;
 }
 
 namespace Sci {
diff --git a/engines/scumm/dialogs.h b/engines/scumm/dialogs.h
index 0e6e189..40e5494 100644
--- a/engines/scumm/dialogs.h
+++ b/engines/scumm/dialogs.h
@@ -33,8 +33,8 @@
 #include "scumm/detection.h"
 
 namespace GUI {
-	class ListWidget;
-	class CommandSender;
+class ListWidget;
+class CommandSender;
 }
 
 
diff --git a/engines/scumm/player_mod.h b/engines/scumm/player_mod.h
index 67d1bb4..3f97c4c 100644
--- a/engines/scumm/player_mod.h
+++ b/engines/scumm/player_mod.h
@@ -31,7 +31,7 @@
 #include "audio/mixer.h"
 
 namespace Audio {
-	class RateConverter;
+class RateConverter;
 }
 
 namespace Scumm {
diff --git a/engines/scumm/player_nes.h b/engines/scumm/player_nes.h
index 5f6e8f2..402eea7 100644
--- a/engines/scumm/player_nes.h
+++ b/engines/scumm/player_nes.h
@@ -35,7 +35,7 @@ namespace Scumm {
 
 class ScummEngine;
 namespace APUe {
-	class APU;
+class APU;
 }
 
 static const int MAXVOLUME = 0x7F;
diff --git a/engines/scumm/saveload.h b/engines/scumm/saveload.h
index 91e780b..eead241 100644
--- a/engines/scumm/saveload.h
+++ b/engines/scumm/saveload.h
@@ -30,8 +30,8 @@
 #include <stddef.h>	// for ptrdiff_t
 
 namespace Common {
-	class SeekableReadStream;
-	class WriteStream;
+class SeekableReadStream;
+class WriteStream;
 }
 
 namespace Scumm {
diff --git a/engines/scumm/scumm.h b/engines/scumm/scumm.h
index 59b9e40..59ff0f1 100644
--- a/engines/scumm/scumm.h
+++ b/engines/scumm/scumm.h
@@ -56,12 +56,12 @@
 #endif
 
 namespace GUI {
-	class Dialog;
+class Dialog;
 }
 using GUI::Dialog;
 namespace Common {
-	class SeekableReadStream;
-	class WriteStream;
+class SeekableReadStream;
+class WriteStream;
 }
 
 /**
diff --git a/engines/scumm/smush/channel.h b/engines/scumm/smush/channel.h
index c35ac0a..717a294 100644
--- a/engines/scumm/smush/channel.h
+++ b/engines/scumm/smush/channel.h
@@ -29,7 +29,7 @@
 #include "common/util.h"
 
 namespace Common {
-	class SeekableReadStream;
+class SeekableReadStream;
 }
 
 namespace Scumm {
diff --git a/engines/sky/compact.h b/engines/sky/compact.h
index cd80d5c..4861273 100644
--- a/engines/sky/compact.h
+++ b/engines/sky/compact.h
@@ -31,7 +31,7 @@
 #include "sky/skydefs.h"
 
 namespace Common {
-	class File;
+class File;
 }
 
 enum CptIds {
diff --git a/engines/sky/control.h b/engines/sky/control.h
index a0024ce..e4428c1 100644
--- a/engines/sky/control.h
+++ b/engines/sky/control.h
@@ -33,7 +33,7 @@
 
 class OSystem;
 namespace Common {
-	class SaveFileManager;
+class SaveFileManager;
 }
 
 namespace Sky {
diff --git a/engines/sky/disk.h b/engines/sky/disk.h
index 3338cce..9e26028 100644
--- a/engines/sky/disk.h
+++ b/engines/sky/disk.h
@@ -34,7 +34,7 @@
 #define MAX_FILES_IN_LIST 60
 
 namespace Common {
-	class File;
+class File;
 }
 
 namespace Sky {
diff --git a/engines/sword1/control.h b/engines/sword1/control.h
index 2e5bfc7..db910f5 100644
--- a/engines/sword1/control.h
+++ b/engines/sword1/control.h
@@ -33,7 +33,7 @@
 
 class OSystem;
 namespace Common {
-	class SaveFileManager;
+class SaveFileManager;
 }
 
 namespace Sword1 {
diff --git a/engines/sword1/sound.h b/engines/sword1/sound.h
index ae96132..b6fcd67 100644
--- a/engines/sword1/sound.h
+++ b/engines/sword1/sound.h
@@ -34,7 +34,7 @@
 #include "audio/mixer.h"
 
 namespace Audio {
-	class Mixer;
+class Mixer;
 }
 
 namespace Sword1 {
diff --git a/engines/sword2/resman.h b/engines/sword2/resman.h
index dcc7992..75748e1 100644
--- a/engines/sword2/resman.h
+++ b/engines/sword2/resman.h
@@ -29,7 +29,7 @@
 #define	SWORD2_RESMAN_H
 
 namespace Common {
-	class File;
+class File;
 }
 
 #define MAX_MEM_CACHE (8 * 1024 * 1024) // we keep up to 8 megs of resource data files in memory
diff --git a/engines/tinsel/dialogs.h b/engines/tinsel/dialogs.h
index a256ed7..f81a59a 100644
--- a/engines/tinsel/dialogs.h
+++ b/engines/tinsel/dialogs.h
@@ -32,7 +32,7 @@
 #include "tinsel/events.h"	// for PLR_EVENT, PLR_EVENT
 
 namespace Common {
-	class Serializer;
+class Serializer;
 }
 
 namespace Tinsel {
diff --git a/engines/tinsel/pcode.h b/engines/tinsel/pcode.h
index f3690e9..f31f2eb 100644
--- a/engines/tinsel/pcode.h
+++ b/engines/tinsel/pcode.h
@@ -31,7 +31,7 @@
 #include "tinsel/sched.h"	// for PROCESS
 
 namespace Common {
-	class Serializer;
+class Serializer;
 }
 
 namespace Tinsel {
diff --git a/engines/tinsel/timers.h b/engines/tinsel/timers.h
index 022604b..1456d9a 100644
--- a/engines/tinsel/timers.h
+++ b/engines/tinsel/timers.h
@@ -31,7 +31,7 @@
 #include "tinsel/dw.h"
 
 namespace Common {
-	class Serializer;
+class Serializer;
 }
 
 namespace Tinsel {
diff --git a/engines/touche/midi.h b/engines/touche/midi.h
index f0f55e6..bde4950 100644
--- a/engines/touche/midi.h
+++ b/engines/touche/midi.h
@@ -34,7 +34,7 @@
 class MidiParser;
 
 namespace Common {
-	class ReadStream;
+class ReadStream;
 }
 
 namespace Touche {
diff --git a/graphics/fonts/winfont.h b/graphics/fonts/winfont.h
index fbe4a77..a552b18 100644
--- a/graphics/fonts/winfont.h
+++ b/graphics/fonts/winfont.h
@@ -28,8 +28,8 @@
 #include "graphics/font.h"
 
 namespace Common {
-	class SeekableReadStream;
-	class String;
+class SeekableReadStream;
+class String;
 }
 
 namespace Graphics {
diff --git a/graphics/pict.h b/graphics/pict.h
index a683a23..22f36aa 100644
--- a/graphics/pict.h
+++ b/graphics/pict.h
@@ -32,7 +32,7 @@
 #include "graphics/pixelformat.h"
 
 namespace Common {
-	class SeekableReadStream;
+class SeekableReadStream;
 }
 
 namespace Graphics {
diff --git a/graphics/wincursor.h b/graphics/wincursor.h
index ca0abf6..717a1be 100644
--- a/graphics/wincursor.h
+++ b/graphics/wincursor.h
@@ -30,9 +30,9 @@
 #include "common/winexe.h"
 
 namespace Common {
-	class NEResources;
-	class PEResources;
-	class SeekableReadStream;
+class NEResources;
+class PEResources;
+class SeekableReadStream;
 }
 
 namespace Graphics {
diff --git a/gui/ThemeLayout.h b/gui/ThemeLayout.h
index 3d367df..372b007 100644
--- a/gui/ThemeLayout.h
+++ b/gui/ThemeLayout.h
@@ -30,8 +30,8 @@
 
 #ifdef LAYOUT_DEBUG_DIALOG
 namespace Graphics {
-	class Font;
-	class Surface;
+class Font;
+class Surface;
 }
 #endif
 
diff --git a/video/codecs/qdm2.h b/video/codecs/qdm2.h
index a6acf3a..b224e80 100644
--- a/video/codecs/qdm2.h
+++ b/video/codecs/qdm2.h
@@ -30,11 +30,11 @@
 #define VIDEO_CODECS_QDM2_H
 
 namespace Common {
-	class SeekableReadStream;
+class SeekableReadStream;
 }
 
 namespace Audio {
-	class AudioStream;
+class AudioStream;
 }
 
 namespace Video {
diff --git a/video/coktel_decoder.h b/video/coktel_decoder.h
index e83e1d2..8d97fcf 100644
--- a/video/coktel_decoder.h
+++ b/video/coktel_decoder.h
@@ -42,7 +42,7 @@
 #include "audio/mixer.h"
 
 namespace Audio {
-	class QueuingAudioStream;
+class QueuingAudioStream;
 }
 
 namespace Video {
diff --git a/video/flic_decoder.h b/video/flic_decoder.h
index 954fed7..36f1c9e 100644
--- a/video/flic_decoder.h
+++ b/video/flic_decoder.h
@@ -31,7 +31,7 @@
 #include "common/rect.h"
 
 namespace Common {
-	class SeekableReadStream;
+class SeekableReadStream;
 }
 
 namespace Video {
diff --git a/video/mpeg_player.h b/video/mpeg_player.h
index 44baff9..dde272a 100644
--- a/video/mpeg_player.h
+++ b/video/mpeg_player.h
@@ -81,7 +81,7 @@ typedef sequence_t mpeg2_sequence_t;
 #define BUFFER_SIZE 4096
 
 namespace Common {
-	class File;
+class File;
 }
 
 class OSystem;
diff --git a/video/qt_decoder.h b/video/qt_decoder.h
index f11689e..6026218 100644
--- a/video/qt_decoder.h
+++ b/video/qt_decoder.h
@@ -45,8 +45,8 @@
 #include "audio/mixer.h"
 
 namespace Common {
-	class File;
-	class MacResManager;
+class File;
+class MacResManager;
 }
 
 namespace Video {
diff --git a/video/smk_decoder.h b/video/smk_decoder.h
index 2d01909..62ef9a1 100644
--- a/video/smk_decoder.h
+++ b/video/smk_decoder.h
@@ -30,7 +30,7 @@
 #include "audio/mixer.h"
 
 namespace Audio {
-	class QueuingAudioStream;
+class QueuingAudioStream;
 }
 
 namespace Video {
diff --git a/video/video_decoder.h b/video/video_decoder.h
index 348b5dc..d8296b5 100644
--- a/video/video_decoder.h
+++ b/video/video_decoder.h
@@ -37,7 +37,7 @@
 
 
 namespace Common {
-	class SeekableReadStream;
+class SeekableReadStream;
 }
 
 namespace Video {






More information about the Scummvm-git-logs mailing list