From 79eb95b20513890776af436ccad3ecd0bbd7cbcb Mon Sep 17 00:00:00 2001 From: Dustin Falgout Date: Sat, 29 Oct 2016 21:40:13 -0500 Subject: [PATCH] Dont set attributes flags on class definition --- src/webkit2-extension.c | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/webkit2-extension.c b/src/webkit2-extension.c index 6099874..635efa7 100644 --- a/src/webkit2-extension.c +++ b/src/webkit2-extension.c @@ -1552,21 +1552,21 @@ static const JSClassDefinition gettext_definition = { }; static const JSClassDefinition greeter_config_definition = { - 0, /* Version */ - kJSClassAttributeNoAutomaticPrototype, /* Attributes */ - "__GreeterConfig", /* Class name */ - NULL, /* Parent class */ - NULL, /* Static values */ - greeter_config_functions, /* Static functions */ + 0, /* Version */ + kJSClassAttributeNone, /* Attributes */ + "__GreeterConfig", /* Class name */ + NULL, /* Parent class */ + NULL, /* Static values */ + greeter_config_functions, /* Static functions */ }; static const JSClassDefinition theme_utils_definition = { - 0, /* Version */ - kJSClassAttributeNoAutomaticPrototype, /* Attributes */ - "__ThemeUtils", /* Class name */ - NULL, /* Parent class */ - NULL, /* Static values */ - theme_utils_functions, /* Static functions */ + 0, /* Version */ + kJSClassAttributeNone, /* Attributes */ + "__ThemeUtils", /* Class name */ + NULL, /* Parent class */ + NULL, /* Static values */ + theme_utils_functions, /* Static functions */ };