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;
|
static GType type = 0;
|
||||||
if (!type) {
|
if (!type) {
|
||||||
type = new_type("sq_view");
|
type = new_type("sq_view");
|
||||||
@ -249,7 +249,7 @@ static GType view_type() {
|
|||||||
return type;
|
return type;
|
||||||
}
|
}
|
||||||
|
|
||||||
static GType button_type() {
|
static GType button_type(void) {
|
||||||
static GType type = 0;
|
static GType type = 0;
|
||||||
if (!type) {
|
if (!type) {
|
||||||
type = new_type("sq_button");
|
type = new_type("sq_button");
|
||||||
|
|||||||
@ -9,7 +9,7 @@ struct squeek_output_handle {
|
|||||||
struct squeek_outputs *outputs;
|
struct squeek_outputs *outputs;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct squeek_outputs *squeek_outputs_new();
|
struct squeek_outputs *squeek_outputs_new(void);
|
||||||
void squeek_outputs_free(struct squeek_outputs*);
|
void squeek_outputs_free(struct squeek_outputs*);
|
||||||
void squeek_outputs_register(struct squeek_outputs*, struct wl_output *output);
|
void squeek_outputs_register(struct squeek_outputs*, struct wl_output *output);
|
||||||
struct squeek_output_handle squeek_outputs_get_current(struct squeek_outputs*);
|
struct squeek_output_handle squeek_outputs_get_current(struct squeek_outputs*);
|
||||||
|
|||||||
@ -2,6 +2,6 @@
|
|||||||
#define __STYLE_H
|
#define __STYLE_H
|
||||||
#include "gtk/gtk.h"
|
#include "gtk/gtk.h"
|
||||||
|
|
||||||
GtkCssProvider *squeek_load_style();
|
GtkCssProvider *squeek_load_style(void);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
struct ui_manager;
|
struct ui_manager;
|
||||||
|
|
||||||
struct ui_manager *squeek_uiman_new();
|
struct ui_manager *squeek_uiman_new(void);
|
||||||
void squeek_uiman_set_output(struct ui_manager *uiman, struct squeek_output_handle output);
|
void squeek_uiman_set_output(struct ui_manager *uiman, struct squeek_output_handle output);
|
||||||
uint32_t squeek_uiman_get_perceptual_height(struct ui_manager *uiman);
|
uint32_t squeek_uiman_get_perceptual_height(struct ui_manager *uiman);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user