diff options
author | Ori Avtalion | 2011-04-25 22:29:26 +0300 |
---|---|---|
committer | Ori Avtalion | 2011-04-28 12:32:01 +0300 |
commit | 3e01d35281c2a279ed3ad6873c87cddddb926a36 (patch) | |
tree | d3f1a9927c850f9568f385836b878cf7490ae24a | |
parent | cd6ee0589d0556d3d9e81d835c8b900636083de5 (diff) | |
download | scummvm-rg350-3e01d35281c2a279ed3ad6873c87cddddb926a36.tar.gz scummvm-rg350-3e01d35281c2a279ed3ad6873c87cddddb926a36.tar.bz2 scummvm-rg350-3e01d35281c2a279ed3ad6873c87cddddb926a36.zip |
JANITORIAL: Format more forward declarations to follow convention
-rw-r--r-- | backends/platform/ps2/Gs2dScreen.h | 2 | ||||
-rw-r--r-- | common/system.h | 2 | ||||
-rw-r--r-- | engines/queen/display.h | 3 | ||||
-rw-r--r-- | engines/savestate.h | 2 | ||||
-rw-r--r-- | engines/sci/graphics/maciconbar.h | 2 | ||||
-rw-r--r-- | engines/sky/screen.h | 3 |
6 files changed, 8 insertions, 6 deletions
diff --git a/backends/platform/ps2/Gs2dScreen.h b/backends/platform/ps2/Gs2dScreen.h index 358e717cbe..6e842b3f55 100644 --- a/backends/platform/ps2/Gs2dScreen.h +++ b/backends/platform/ps2/Gs2dScreen.h @@ -46,7 +46,7 @@ enum GsInterlace { namespace Graphics { - struct Surface; +struct Surface; } class Gs2dScreen { diff --git a/common/system.h b/common/system.h index a8372a1b06..f727ff62dd 100644 --- a/common/system.h +++ b/common/system.h @@ -39,7 +39,7 @@ class Mixer; } namespace Graphics { - struct Surface; +struct Surface; } namespace Common { diff --git a/engines/queen/display.h b/engines/queen/display.h index d3391fc4d3..e7a2ecd4a1 100644 --- a/engines/queen/display.h +++ b/engines/queen/display.h @@ -32,8 +32,9 @@ #include "queen/defs.h" class OSystem; + namespace Common { - struct Rect; +struct Rect; } namespace Queen { diff --git a/engines/savestate.h b/engines/savestate.h index 37f2b9bdd4..9b64a96aee 100644 --- a/engines/savestate.h +++ b/engines/savestate.h @@ -32,7 +32,7 @@ namespace Graphics { - struct Surface; +struct Surface; } /** diff --git a/engines/sci/graphics/maciconbar.h b/engines/sci/graphics/maciconbar.h index 3ac5475147..72609d19ab 100644 --- a/engines/sci/graphics/maciconbar.h +++ b/engines/sci/graphics/maciconbar.h @@ -31,7 +31,7 @@ #include "sci/engine/vm.h" namespace Graphics { - struct Surface; +struct Surface; } namespace Sci { diff --git a/engines/sky/screen.h b/engines/sky/screen.h index 2c870ebd89..5e226c49ed 100644 --- a/engines/sky/screen.h +++ b/engines/sky/screen.h @@ -31,8 +31,9 @@ #include "sky/skydefs.h" class OSystem; + namespace Common { - struct Rect; +struct Rect; } namespace Sky { |