From defda16eb60a87b3878ab27178df7552c3148808 Mon Sep 17 00:00:00 2001 From: rubidium Date: Mon, 25 Nov 2013 14:30:22 +0000 Subject: (svn r26108) -Codechange: some coding style (whitespace) --- src/sound/allegro_s.h | 2 +- src/sound/cocoa_s.h | 2 +- src/sound/null_s.h | 2 +- src/sound/sdl_s.h | 2 +- src/sound/sound_driver.hpp | 2 +- src/sound/win32_s.h | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) (limited to 'src/sound') 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); -- cgit v1.2.3-54-g00ecf