treewide: Use new style function definitions
This commit is contained in:
@ -241,7 +241,7 @@ static GType new_type(char *name) {
|
||||
);
|
||||
}
|
||||
|
||||
static GType view_type() {
|
||||
static GType view_type(void) {
|
||||
static GType type = 0;
|
||||
if (!type) {
|
||||
type = new_type("sq_view");
|
||||
@ -249,7 +249,7 @@ static GType view_type() {
|
||||
return type;
|
||||
}
|
||||
|
||||
static GType button_type() {
|
||||
static GType button_type(void) {
|
||||
static GType type = 0;
|
||||
if (!type) {
|
||||
type = new_type("sq_button");
|
||||
|
||||
Reference in New Issue
Block a user