Skip to content
Snippets Groups Projects
Verified Commit e85da9c0 authored by Bruce Cowan's avatar Bruce Cowan :airplane:
Browse files

Stop using gpointer

It's one of those silly g* typedefs
parent bdb303af
No related branches found
No related tags found
No related merge requests found
Pipeline #3607 passed
......@@ -10,7 +10,7 @@
static void
on_activate ( GApplication *app,
G_GNUC_UNUSED gpointer user_data)
G_GNUC_UNUSED void *user_data)
{
g_assert (GTK_IS_APPLICATION (app));
......@@ -27,7 +27,7 @@ on_activate ( GApplication *app,
static void
about_activated (G_GNUC_UNUSED GSimpleAction *simple,
G_GNUC_UNUSED GVariant *parameter,
gpointer user_data)
void *user_data)
{
GtkApplication *app = GTK_APPLICATION (user_data);
GtkWindow *window = gtk_application_get_active_window (app);
......@@ -45,7 +45,7 @@ about_activated (G_GNUC_UNUSED GSimpleAction *simple,
static void
preferences_activated (G_GNUC_UNUSED GSimpleAction *simple,
G_GNUC_UNUSED GVariant *parameter,
gpointer user_data)
void *user_data)
{
GtkApplication *app = GTK_APPLICATION (user_data);
GtkWindow *window = gtk_application_get_active_window (app);
......@@ -55,8 +55,8 @@ preferences_activated (G_GNUC_UNUSED GSimpleAction *simple,
}
static void
on_startup (GApplication *app,
G_GNUC_UNUSED gpointer user_data)
on_startup ( GApplication *app,
G_GNUC_UNUSED void *user_data)
{
const GActionEntry app_entries[] =
{
......
......@@ -96,7 +96,7 @@ item_tooltip_cb (GtkListItem *item)
static void
activate_score_changed (G_GNUC_UNUSED GSimpleAction *action,
GVariant *parameter,
gpointer user_data)
void *user_data)
{
RugbyAppWindow *self = RUGBY_APP_WINDOW (user_data);
......@@ -113,7 +113,7 @@ activate_score_changed (G_GNUC_UNUSED GSimpleAction *action,
static void
try_spin_value_changed_cb (G_GNUC_UNUSED GtkSpinButton *btn,
gpointer user_data)
void *user_data)
{
RugbyAppWindow *self = RUGBY_APP_WINDOW (user_data);
gtk_filter_changed (GTK_FILTER (self->try_filter), GTK_FILTER_CHANGE_DIFFERENT);
......@@ -128,8 +128,8 @@ rugby_app_window_dispose (GObject *object)
}
static gboolean
try_filter_func (gpointer item,
gpointer user_data)
try_filter_func (void *item,
void *user_data)
{
RugbyPossibility *possibility = RUGBY_POSSIBILITY (item);
RugbyAppWindow *self = RUGBY_APP_WINDOW (user_data);
......@@ -150,7 +150,7 @@ try_filter_func (gpointer item,
static void
show_try_filter_change_state (GSimpleAction *action,
GVariant *value,
gpointer user_data)
void *user_data)
{
RugbyAppWindow *self = RUGBY_APP_WINDOW (user_data);
......
......@@ -37,18 +37,18 @@ static GParamSpec *properties[N_PROPS];
// Helper functions
static int
sort_func ( gconstpointer a,
gconstpointer b,
G_GNUC_UNUSED gpointer user_data)
sort_func ( gconstpointer a,
gconstpointer b,
G_GNUC_UNUSED void *user_data)
{
int atries, autries;
int btries, butries;
g_object_get ((gpointer) a,
g_object_get ((void *) a,
"tries", &atries,
"utries", &autries,
NULL);
g_object_get ((gpointer) b,
g_object_get ((void *) b,
"tries", &btries,
"utries", &butries,
NULL);
......@@ -124,7 +124,7 @@ rugby_list_store_get_n_items (GListModel *list)
return g_list_model_get_n_items (G_LIST_MODEL (self->items));
}
static gpointer
static void *
rugby_list_store_get_item (GListModel *list,
unsigned position)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment