Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
liblinphone
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
10
Issues
10
List
Board
Labels
Milestones
Merge Requests
21
Merge Requests
21
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
External Wiki
External Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
BC
public
liblinphone
Commits
52da7058
Commit
52da7058
authored
May 01, 2015
by
Simon Morlat
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove g_list_free_full(), that requires glib>2.26
parent
8e9da52a
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
main.c
gtk/main.c
+2
-1
No files found.
gtk/main.c
View file @
52da7058
...
...
@@ -352,7 +352,8 @@ static void linphone_gtk_configure_window(GtkWidget *w, const char *window_name)
pbuf_list
=
g_list_append
(
pbuf_list
,
pbuf_32
);
gtk_window_set_icon_list
(
GTK_WINDOW
(
w
),
pbuf_list
);
gtk_window_set_default_icon_list
(
pbuf_list
);
g_list_free_full
(
pbuf_list
,
g_object_unref
);
g_list_foreach
(
pbuf_list
,
(
GFunc
)
g_object_unref
,
NULL
);
g_list_free
(
pbuf_list
);
}
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment