summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorsmatz <smatz@openttd.org>2010-02-10 17:37:47 +0000
committersmatz <smatz@openttd.org>2010-02-10 17:37:47 +0000
commitc5b34444af495322255f4b427b3bcc10de8d3e7d (patch)
tree9f43e951fef75b427a0a1db09b714146722cf7f7 /src
parent023fc16894b191b4841da5f01480907653089301 (diff)
downloadopenttd-c5b34444af495322255f4b427b3bcc10de8d3e7d.tar.xz
(svn r19084) -Codechange: minor coding-style fixups
Diffstat (limited to 'src')
-rw-r--r--src/console_internal.h2
-rw-r--r--src/fios.h2
-rw-r--r--src/pathfinder/npf/aystar.h2
-rw-r--r--src/pathfinder/npf/queue.h2
-rw-r--r--src/texteff.cpp2
-rw-r--r--src/unmovable_cmd.cpp2
-rw-r--r--src/video/cocoa/wnd_quartz.mm2
-rw-r--r--src/video/cocoa/wnd_quickdraw.mm2
8 files changed, 8 insertions, 8 deletions
diff --git a/src/console_internal.h b/src/console_internal.h
index 0be93bf19..b7c6362b7 100644
--- a/src/console_internal.h
+++ b/src/console_internal.h
@@ -31,7 +31,7 @@ enum IConsoleHookTypes {
* for general flow of permissions or special action needed in some cases
*/
typedef bool IConsoleHook();
-struct IConsoleHooks{
+struct IConsoleHooks {
IConsoleHook *access; ///< trigger when accessing the command
IConsoleHook *pre; ///< trigger before the command is executed
IConsoleHook *post; ///< trigger after the command is executed
diff --git a/src/fios.h b/src/fios.h
index 06a4856ae..4338be727 100644
--- a/src/fios.h
+++ b/src/fios.h
@@ -33,7 +33,7 @@ enum {
MAX_FILE_SLOTS = 64
};
-enum SaveLoadDialogMode{
+enum SaveLoadDialogMode {
SLD_LOAD_GAME,
SLD_LOAD_SCENARIO,
SLD_SAVE_GAME,
diff --git a/src/pathfinder/npf/aystar.h b/src/pathfinder/npf/aystar.h
index 56c1804e0..426a292a0 100644
--- a/src/pathfinder/npf/aystar.h
+++ b/src/pathfinder/npf/aystar.h
@@ -32,7 +32,7 @@ enum {
AYSTAR_DONE
};
-enum{
+enum {
AYSTAR_INVALID_NODE = -1,
};
diff --git a/src/pathfinder/npf/queue.h b/src/pathfinder/npf/queue.h
index 76421e9ac..fc913de35 100644
--- a/src/pathfinder/npf/queue.h
+++ b/src/pathfinder/npf/queue.h
@@ -37,7 +37,7 @@ struct BinaryHeapNode {
};
-struct Queue{
+struct Queue {
/*
* Pushes an element into the queue, at the appropriate place for the queue.
* Requires the queue pointer to be of an appropriate type, of course.
diff --git a/src/texteff.cpp b/src/texteff.cpp
index c1c133e8d..0feb522db 100644
--- a/src/texteff.cpp
+++ b/src/texteff.cpp
@@ -18,7 +18,7 @@
#include "settings_type.h"
/** Container for all information about a text effect */
-struct TextEffect : public ViewportSign{
+struct TextEffect : public ViewportSign {
uint64 params_1; ///< DParam parameter
StringID string_id; ///< String to draw for the text effect, if INVALID_STRING_ID then it's not valid
uint8 duration; ///< How long the text effect should stay, in ticks (applies only when mode == TE_RISING)
diff --git a/src/unmovable_cmd.cpp b/src/unmovable_cmd.cpp
index 8e412b16f..c48263abd 100644
--- a/src/unmovable_cmd.cpp
+++ b/src/unmovable_cmd.cpp
@@ -224,7 +224,7 @@ static void DrawTile_Unmovable(TileInfo *ti)
DrawBridgeMiddle(ti);
break;
- case UNMOVABLE_HQ:{
+ case UNMOVABLE_HQ: {
assert(IsCompanyHQ(ti->tile));
PaletteID palette = COMPANY_SPRITE_COLOUR(GetTileOwner(ti->tile));
diff --git a/src/video/cocoa/wnd_quartz.mm b/src/video/cocoa/wnd_quartz.mm
index 76608f8ef..18a87e2aa 100644
--- a/src/video/cocoa/wnd_quartz.mm
+++ b/src/video/cocoa/wnd_quartz.mm
@@ -63,7 +63,7 @@ class WindowQuartzSubdriver;
@end
/* Delegate for our NSWindow to send ask for quit on close */
-@interface OTTD_QuartzWindowDelegate : NSObject{
+@interface OTTD_QuartzWindowDelegate : NSObject {
WindowQuartzSubdriver *driver;
}
diff --git a/src/video/cocoa/wnd_quickdraw.mm b/src/video/cocoa/wnd_quickdraw.mm
index ffea0bfe7..f4c72cc1f 100644
--- a/src/video/cocoa/wnd_quickdraw.mm
+++ b/src/video/cocoa/wnd_quickdraw.mm
@@ -63,7 +63,7 @@ class WindowQuickdrawSubdriver;
@end
/* Delegate for our NSWindow to send ask for quit on close */
-@interface OTTD_QuickdrawWindowDelegate : NSObject{
+@interface OTTD_QuickdrawWindowDelegate : NSObject {
WindowQuickdrawSubdriver *driver;
}