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
d2e06c74
Commit
d2e06c74
authored
Aug 26, 2016
by
Gautier Pelloux-Prayer
Browse files
fix compilation
parent
b368e116
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
CMakeLists.txt
CMakeLists.txt
+1
-1
gtk/setupwizard.c
gtk/setupwizard.c
+3
-3
mediastreamer2
mediastreamer2
+1
-1
No files found.
CMakeLists.txt
View file @
d2e06c74
...
...
@@ -21,7 +21,7 @@
############################################################################
cmake_minimum_required
(
VERSION 3.0
)
project
(
linphone VERSION 3.10.
0
LANGUAGES C CXX
)
project
(
linphone VERSION 3.10.
1
LANGUAGES C CXX
)
set
(
LINPHONE_MAJOR_VERSION
${
PROJECT_VERSION_MAJOR
}
)
...
...
gtk/setupwizard.c
View file @
d2e06c74
...
...
@@ -31,7 +31,7 @@ static LinphoneAccountCreator * linphone_gtk_assistant_get_creator(GtkWidget *w)
return
(
LinphoneAccountCreator
*
)
g_object_get_data
(
G_OBJECT
(
w
),
"creator"
);
}
static
void
linphone_gtk_create_account_cb
(
LinphoneAccountCreator
*
creator
,
LinphoneAccountCreatorStatus
status
)
{
static
void
linphone_gtk_create_account_cb
(
LinphoneAccountCreator
*
creator
,
LinphoneAccountCreatorStatus
status
,
const
char
*
resp
)
{
GtkWidget
*
assistant
=
(
GtkWidget
*
)
linphone_account_creator_get_user_data
(
creator
);
if
(
status
==
LinphoneAccountCreatorAccountCreated
)
{
// Go to page_6_linphone_account_validation_wait
...
...
@@ -48,7 +48,7 @@ static void create_account(GtkWidget *assistant) {
linphone_account_creator_create_account
(
creator
);
}
static
void
linphone_gtk_test_account_validation_cb
(
LinphoneAccountCreator
*
creator
,
LinphoneAccountCreatorStatus
status
)
{
static
void
linphone_gtk_test_account_validation_cb
(
LinphoneAccountCreator
*
creator
,
LinphoneAccountCreatorStatus
status
,
const
char
*
resp
)
{
GtkWidget
*
assistant
=
(
GtkWidget
*
)
linphone_account_creator_get_user_data
(
creator
);
if
(
status
==
LinphoneAccountCreatorAccountActivated
)
{
// Go to page_9_finish
...
...
@@ -228,7 +228,7 @@ static gboolean update_interface_with_username_availability(GtkWidget *page) {
return
FALSE
;
}
static
void
linphone_gtk_test_account_existence_cb
(
LinphoneAccountCreator
*
creator
,
LinphoneAccountCreatorStatus
status
)
{
static
void
linphone_gtk_test_account_existence_cb
(
LinphoneAccountCreator
*
creator
,
LinphoneAccountCreatorStatus
status
,
const
char
*
resp
)
{
GtkWidget
*
assistant
=
(
GtkWidget
*
)
linphone_account_creator_get_user_data
(
creator
);
GtkWidget
*
page
=
gtk_assistant_get_nth_page
(
GTK_ASSISTANT
(
assistant
),
gtk_assistant_get_current_page
(
GTK_ASSISTANT
(
assistant
)));
g_object_set_data
(
G_OBJECT
(
page
),
"is_username_used"
,
GINT_TO_POINTER
(
status
));
...
...
mediastreamer2
@
b44e5be9
Subproject commit
eb5fdf1007b967be73eee4530d0e17a778d036e
b
Subproject commit
b44e5be9877eceb567416de238725fda0431a83
b
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