Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
Rugby
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Bruce Cowan
Rugby
Commits
e85da9c0
Verified
Commit
e85da9c0
authored
2 years ago
by
Bruce Cowan
Browse files
Options
Downloads
Patches
Plain Diff
Stop using gpointer
It's one of those silly g* typedefs
parent
bdb303af
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#3607
passed
2 years ago
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/main.c
+5
-5
5 additions, 5 deletions
src/main.c
src/rugby-app-window.c
+5
-5
5 additions, 5 deletions
src/rugby-app-window.c
src/rugby-list-store.c
+6
-6
6 additions, 6 deletions
src/rugby-list-store.c
with
16 additions
and
16 deletions
src/main.c
+
5
−
5
View file @
e85da9c0
...
...
@@ -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
[]
=
{
...
...
This diff is collapsed.
Click to expand it.
src/rugby-app-window.c
+
5
−
5
View file @
e85da9c0
...
...
@@ -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
);
...
...
This diff is collapsed.
Click to expand it.
src/rugby-list-store.c
+
6
−
6
View file @
e85da9c0
...
...
@@ -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
)
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment