1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2024-11-18 13:54:36 -05:00

[Test] Fix building of tests.

Fixes: #1017
This commit is contained in:
Dave Davenport 2019-09-27 10:43:29 +02:00
parent 7c613f6a4c
commit 4e0dfb03b1
2 changed files with 11 additions and 0 deletions

View file

@ -63,6 +63,12 @@ unsigned int test =0;
} \ } \
} }
int monitor_active ( G_GNUC_UNUSED workarea *mon )
{
return 0;
}
gboolean config_parse_set_property ( G_GNUC_UNUSED const Property *p, G_GNUC_UNUSED char **error ) gboolean config_parse_set_property ( G_GNUC_UNUSED const Property *p, G_GNUC_UNUSED char **error )
{ {
return FALSE; return FALSE;

View file

@ -56,6 +56,11 @@ unsigned int test =0;
} \ } \
} }
int monitor_active ( G_GNUC_UNUSED workarea *mon )
{
return 0;
}
char * helper_get_theme_path ( const char *file ) char * helper_get_theme_path ( const char *file )
{ {
return g_strdup ( file ); return g_strdup ( file );