diff options
| author | xHire <xhire@tuxportal.cz> | 2009-05-23 15:41:18 +0200 |
|---|---|---|
| committer | xHire <xhire@tuxportal.cz> | 2009-05-26 01:11:32 +0200 |
| commit | 4d4dae5cc3a2bf32421ad2d4255079eb1d731647 (patch) | |
| tree | 064450f544b7ba8477cd8c5e51a8410a27a070c0 /src/client/saveDialog.h | |
| parent | c2c1664831c48e841296eb85318f8a63f44856c8 (diff) | |
Rectified the coding style in client .h files
Diffstat (limited to 'src/client/saveDialog.h')
| -rw-r--r-- | src/client/saveDialog.h | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/src/client/saveDialog.h b/src/client/saveDialog.h index 4f9ed0e..f5fb91f 100644 --- a/src/client/saveDialog.h +++ b/src/client/saveDialog.h @@ -1,16 +1,13 @@ - #ifndef SAVE_DIALOG_H +#define SAVE_DIALOG_H -# define SAVE_DIALOG_H - -# define SAVEDIALOG_ACTIVE_TIME_INTERVAL 500 - -# define SAVE_DIALOG_SIZE_X 320 -# define SAVE_DIALOG_SIZE_Y 120 +#define SAVEDIALOG_ACTIVE_TIME_INTERVAL 500 -# define SAVE_DIALOG_LOCATIN_X (WINDOW_SIZE_X/2 - SAVE_DIALOG_SIZE_X/2) -# define SAVE_DIALOG_LOCATIN_Y (WINDOW_SIZE_Y/2 - SAVE_DIALOG_SIZE_Y/2) +#define SAVE_DIALOG_SIZE_X 320 +#define SAVE_DIALOG_SIZE_Y 120 +#define SAVE_DIALOG_LOCATIN_X (WINDOW_SIZE_X / 2 - SAVE_DIALOG_SIZE_X / 2) +#define SAVE_DIALOG_LOCATIN_Y (WINDOW_SIZE_Y / 2 - SAVE_DIALOG_SIZE_Y / 2) extern void save_dialog_init(); extern bool_t save_dialog_is_active(); @@ -18,4 +15,4 @@ extern void save_dialog_draw(); extern void save_dialog_event(); extern void save_dialog_quit(); -#endif +#endif /* SAVE_DIALOG_H */ |