Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
C
calls
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Evangelos Ribeiro Tzaras
calls
Commits
20396ac9
Commit
20396ac9
authored
Oct 28, 2020
by
Arnaud Ferraris
Committed by
Arnaud Ferraris
Nov 01, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
application: initialize libcallaudio on startup
parent
d304c9cb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
src/calls-application.c
src/calls-application.c
+7
-0
No files found.
src/calls-application.c
View file @
20396ac9
...
...
@@ -40,6 +40,7 @@
#include <glib/gi18n.h>
#include <handy.h>
#include <libcallaudio.h>
#include <libebook-contacts/libebook-contacts.h>
/**
...
...
@@ -301,11 +302,17 @@ static void
startup
(
GApplication
*
application
)
{
GtkIconTheme
*
icon_theme
;
g_autoptr
(
GError
)
error
=
NULL
;
G_APPLICATION_CLASS
(
calls_application_parent_class
)
->
startup
(
application
);
hdy_init
();
if
(
!
call_audio_init
(
&
error
))
{
g_warning
(
"Failed to init libcallaudio: %s"
,
error
->
message
);
}
g_set_prgname
(
APP_ID
);
g_set_application_name
(
_
(
"Calls"
));
...
...
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