Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
liblinphone
Commits
34e5de5f
Commit
34e5de5f
authored
May 06, 2015
by
François Grisez
Browse files
Fix crash on MacOSX
parent
978b3b7a
Changes
1
Hide whitespace changes
Inline
Side-by-side
gtk/status_icon.c
View file @
34e5de5f
...
...
@@ -205,11 +205,11 @@ const char *linphone_status_icon_get_implementation_name(const LinphoneStatusIco
void
linphone_status_icon_start
(
LinphoneStatusIcon
*
obj
,
LinphoneStatusIconParams
*
params
)
{
obj
->
params
=
linphone_status_icon_params_ref
(
params
);
obj
->
desc
->
start
(
obj
);
if
(
obj
->
desc
->
start
)
obj
->
desc
->
start
(
obj
);
}
void
linphone_status_icon_enable_blinking
(
LinphoneStatusIcon
*
obj
,
gboolean
enable
)
{
obj
->
desc
->
enable_blinking
(
obj
,
enable
);
if
(
obj
->
desc
->
enable_blinking
)
obj
->
desc
->
enable_blinking
(
obj
,
enable
);
}
static
void
_linphone_status_icon_notify_click
(
LinphoneStatusIcon
*
obj
)
{
...
...
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