From 95deefbf66380088d834ef073bce163694782ae7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Thu, 18 Sep 2008 13:12:22 +0000 Subject: [PATCH] * Fixed wrong indentation and spacing. * Enlarged default port size to 50. * Added license header. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@27622 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/servers/app/ServerConfig.h | 33 +++++++++++++++++++-------------- 1 file changed, 19 insertions(+), 14 deletions(-) diff --git a/src/servers/app/ServerConfig.h b/src/servers/app/ServerConfig.h index 73ec169cfe..8d05dd4f05 100644 --- a/src/servers/app/ServerConfig.h +++ b/src/servers/app/ServerConfig.h @@ -1,3 +1,7 @@ +/* + * Copyright 2001-2008, Haiku. + * Distributed under the terms of the MIT License. + */ #ifndef _APPSERVER_CONFIG_H #define _APPSERVER_CONFIG_H @@ -5,7 +9,7 @@ // system keyboard shortcuts. Note that it is possible, though senseless, to place it in // regular mode and still use a display driver which depends on the R5 app_server #ifndef TEST_MODE - #define TEST_MODE 0 +# define TEST_MODE 0 #endif // Define this if you want the display driver to emulate the input server. @@ -23,20 +27,21 @@ // These definitions provide the server something to use for default // system fonts. -# define DEFAULT_PLAIN_FONT_FAMILY "DejaVu Sans" -# define FALLBACK_PLAIN_FONT_FAMILY "Swis721 BT" -# define DEFAULT_PLAIN_FONT_STYLE "Book" -# define DEFAULT_PLAIN_FONT_SIZE 12.0f -# define DEFAULT_BOLD_FONT_FAMILY "DejaVu Sans" -# define FALLBACK_BOLD_FONT_FAMILY "Swis721 BT" -# define DEFAULT_BOLD_FONT_STYLE "Bold" -# define DEFAULT_BOLD_FONT_SIZE 12.0f -# define DEFAULT_FIXED_FONT_FAMILY "DejaVu Sans Mono" -# define FALLBACK_FIXED_FONT_FAMILY "Courier10 BT" -# define DEFAULT_FIXED_FONT_STYLE "Book" -# define DEFAULT_FIXED_FONT_SIZE 12.0f +#define DEFAULT_PLAIN_FONT_FAMILY "DejaVu Sans" +#define FALLBACK_PLAIN_FONT_FAMILY "Swis721 BT" +#define DEFAULT_PLAIN_FONT_STYLE "Book" +#define DEFAULT_PLAIN_FONT_SIZE 12.0f +#define DEFAULT_BOLD_FONT_FAMILY "DejaVu Sans" +#define FALLBACK_BOLD_FONT_FAMILY "Swis721 BT" +#define DEFAULT_BOLD_FONT_STYLE "Bold" +#define DEFAULT_BOLD_FONT_SIZE 12.0f +#define DEFAULT_FIXED_FONT_FAMILY "DejaVu Sans Mono" +#define FALLBACK_FIXED_FONT_FAMILY "Courier10 BT" +#define DEFAULT_FIXED_FONT_STYLE "Book" +#define DEFAULT_FIXED_FONT_SIZE 12.0f + // This is the port capacity for all monitoring objects - ServerApps // and ServerWindows -#define DEFAULT_MONITOR_PORT_SIZE 30 +#define DEFAULT_MONITOR_PORT_SIZE 50 #endif /* _APPSERVER_CONFIG_H */