diff options
author | rubidium <rubidium@openttd.org> | 2013-11-25 14:30:22 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2013-11-25 14:30:22 +0000 |
commit | defda16eb60a87b3878ab27178df7552c3148808 (patch) | |
tree | 2c2d04d2f13468305583547d657ae3b8cee18d1d /src/sound | |
parent | 6996b441d9d104bc6d7041b64362f4426425f600 (diff) | |
download | openttd-defda16eb60a87b3878ab27178df7552c3148808.tar.xz |
(svn r26108) -Codechange: some coding style (whitespace)
Diffstat (limited to 'src/sound')
-rw-r--r-- | src/sound/allegro_s.h | 2 | ||||
-rw-r--r-- | src/sound/cocoa_s.h | 2 | ||||
-rw-r--r-- | src/sound/null_s.h | 2 | ||||
-rw-r--r-- | src/sound/sdl_s.h | 2 | ||||
-rw-r--r-- | src/sound/sound_driver.hpp | 2 | ||||
-rw-r--r-- | src/sound/win32_s.h | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/src/sound/allegro_s.h b/src/sound/allegro_s.h index 269a1a030..e0a247f7b 100644 --- a/src/sound/allegro_s.h +++ b/src/sound/allegro_s.h @@ -15,7 +15,7 @@ #include "sound_driver.hpp" /** Implementation of the allegro sound driver. */ -class SoundDriver_Allegro: public SoundDriver { +class SoundDriver_Allegro : public SoundDriver { public: /* virtual */ const char *Start(const char * const *param); diff --git a/src/sound/cocoa_s.h b/src/sound/cocoa_s.h index a85748bc2..701091425 100644 --- a/src/sound/cocoa_s.h +++ b/src/sound/cocoa_s.h @@ -14,7 +14,7 @@ #include "sound_driver.hpp" -class SoundDriver_Cocoa: public SoundDriver { +class SoundDriver_Cocoa : public SoundDriver { public: /* virtual */ const char *Start(const char * const *param); diff --git a/src/sound/null_s.h b/src/sound/null_s.h index a2714d86d..b2acd9093 100644 --- a/src/sound/null_s.h +++ b/src/sound/null_s.h @@ -15,7 +15,7 @@ #include "sound_driver.hpp" /** Implementation of the null sound driver. */ -class SoundDriver_Null: public SoundDriver { +class SoundDriver_Null : public SoundDriver { public: /* virtual */ const char *Start(const char * const *param) { return NULL; } diff --git a/src/sound/sdl_s.h b/src/sound/sdl_s.h index 60cf11838..544ce2070 100644 --- a/src/sound/sdl_s.h +++ b/src/sound/sdl_s.h @@ -15,7 +15,7 @@ #include "sound_driver.hpp" /** Implementation of the SDL sound driver. */ -class SoundDriver_SDL: public SoundDriver { +class SoundDriver_SDL : public SoundDriver { public: /* virtual */ const char *Start(const char * const *param); diff --git a/src/sound/sound_driver.hpp b/src/sound/sound_driver.hpp index badfabd93..2b9cf145d 100644 --- a/src/sound/sound_driver.hpp +++ b/src/sound/sound_driver.hpp @@ -15,7 +15,7 @@ #include "../driver.h" /** Base for all sound drivers. */ -class SoundDriver: public Driver { +class SoundDriver : public Driver { public: /** Called once every tick */ virtual void MainLoop() {} diff --git a/src/sound/win32_s.h b/src/sound/win32_s.h index f76849b15..77906c88a 100644 --- a/src/sound/win32_s.h +++ b/src/sound/win32_s.h @@ -15,7 +15,7 @@ #include "sound_driver.hpp" /** Implementation of the sound driver for Windows. */ -class SoundDriver_Win32: public SoundDriver { +class SoundDriver_Win32 : public SoundDriver { public: /* virtual */ const char *Start(const char * const *param); |