summaryrefslogtreecommitdiffstats
path: root/source/xrmoptions.c
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2017-03-28 20:04:02 +0200
committerDave Davenport <qball@gmpclient.org>2017-03-28 20:04:02 +0200
commit8c345273ffa84f1078c0e837eb9fe8f29fc5a119 (patch)
treee3f43832c2d1ce2780ebbf9d1d3dd8ef638e1b40 /source/xrmoptions.c
parent5259eb11bc7327074511bc83595542fe616ae1b1 (diff)
Indenting.
Diffstat (limited to 'source/xrmoptions.c')
-rw-r--r--source/xrmoptions.c49
1 files changed, 25 insertions, 24 deletions
diff --git a/source/xrmoptions.c b/source/xrmoptions.c
index 189c0ee2..04126acd 100644
--- a/source/xrmoptions.c
+++ b/source/xrmoptions.c
@@ -387,10 +387,9 @@ void config_parse_cmd_options ( void )
static void __config_parser_set_property ( XrmOption *option, const Property *p )
{
- if ( option->type == xrm_String )
- {
+ if ( option->type == xrm_String ) {
if ( p->type != P_STRING ) {
- fprintf(stderr, "Option: %s needs to be set with a string.\n", option->name);
+ fprintf ( stderr, "Option: %s needs to be set with a string.\n", option->name );
return;
}
if ( ( option )->mem != NULL ) {
@@ -401,46 +400,48 @@ static void __config_parser_set_property ( XrmOption *option, const Property *p
// Memory
( option )->mem = *( option->value.str );
- option->source = CONFIG_FILE_THEME;
- } else if ( option->type == xrm_Number ) {
- if ( p->type != P_INTEGER ){
- fprintf(stderr, "Option: %s needs to be set with a number.\n", option->name);
+ option->source = CONFIG_FILE_THEME;
+ }
+ else if ( option->type == xrm_Number ) {
+ if ( p->type != P_INTEGER ) {
+ fprintf ( stderr, "Option: %s needs to be set with a number.\n", option->name );
return;
}
- *(option->value.snum) = p->value.i;
- option->source = CONFIG_FILE_THEME;
- } else if ( option->type == xrm_SNumber ) {
- if ( p->type != P_INTEGER ){
- fprintf(stderr, "Option: %s needs to be set with a number.\n", option->name);
+ *( option->value.snum ) = p->value.i;
+ option->source = CONFIG_FILE_THEME;
+ }
+ else if ( option->type == xrm_SNumber ) {
+ if ( p->type != P_INTEGER ) {
+ fprintf ( stderr, "Option: %s needs to be set with a number.\n", option->name );
return;
}
- *(option->value.num) = (unsigned int )(p->value.i);
- option->source = CONFIG_FILE_THEME;
- } else if ( option->type == xrm_Boolean ) {
- if ( p->type != P_BOOLEAN ){
- fprintf(stderr, "Option: %s needs to be set with a boolean.\n", option->name);
+ *( option->value.num ) = (unsigned int ) ( p->value.i );
+ option->source = CONFIG_FILE_THEME;
+ }
+ else if ( option->type == xrm_Boolean ) {
+ if ( p->type != P_BOOLEAN ) {
+ fprintf ( stderr, "Option: %s needs to be set with a boolean.\n", option->name );
return;
}
- *(option->value.num) = (p->value.b);
- option->source = CONFIG_FILE_THEME;
+ *( option->value.num ) = ( p->value.b );
+ option->source = CONFIG_FILE_THEME;
}
}
-
void config_parse_set_property ( const Property *p )
{
for ( unsigned int i = 0; i < sizeof ( xrmOptions ) / sizeof ( XrmOption ); ++i ) {
XrmOption *op = &( xrmOptions[i] );
- if ( g_strcmp0 ( op->name, p->name) == 0 ) {
+ if ( g_strcmp0 ( op->name, p->name ) == 0 ) {
__config_parser_set_property ( op, p );
- return;
+ return;
}
}
for ( unsigned int i = 0; i < num_extra_options; ++i ) {
XrmOption *op = &( extra_options[i] );
- if ( g_strcmp0 ( op->name, p->name) == 0 ) {
+ if ( g_strcmp0 ( op->name, p->name ) == 0 ) {
__config_parser_set_property ( op, p );
- return;
+ return;
}
}
}