Merge branch 'errors' into 'master'
Errors See merge request Librem5/squeekboard!107
This commit is contained in:
@ -100,6 +100,7 @@ eek_element_set_property (GObject *object,
|
|||||||
break;
|
break;
|
||||||
case PROP_LEVEL:
|
case PROP_LEVEL:
|
||||||
eek_element_set_level (element, g_value_get_int (value));
|
eek_element_set_level (element, g_value_get_int (value));
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
||||||
break;
|
break;
|
||||||
|
|||||||
10
meson.build
10
meson.build
@ -11,6 +11,16 @@ project(
|
|||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
|
||||||
|
add_project_arguments(
|
||||||
|
[
|
||||||
|
'-Werror=implicit-function-declaration',
|
||||||
|
'-Werror=implicit-fallthrough=3',
|
||||||
|
'-Werror=maybe-uninitialized',
|
||||||
|
# '-Werror=missing-field-initializers', // fix eek-unicode-keysym-entries first
|
||||||
|
],
|
||||||
|
language: 'c'
|
||||||
|
)
|
||||||
|
|
||||||
i18n = import('i18n')
|
i18n = import('i18n')
|
||||||
|
|
||||||
conf_data = configuration_data()
|
conf_data = configuration_data()
|
||||||
|
|||||||
@ -19,6 +19,8 @@
|
|||||||
*/
|
*/
|
||||||
#include "eek/eek.h"
|
#include "eek/eek.h"
|
||||||
|
|
||||||
|
#include <gtk/gtk.h>
|
||||||
|
|
||||||
static void
|
static void
|
||||||
test_create (void)
|
test_create (void)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user