forked from mirrors/linphone-iphone
fix compilation
This commit is contained in:
parent
b368e116ed
commit
d2e06c74ad
3 changed files with 5 additions and 5 deletions
|
|
@ -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})
|
||||
|
|
|
|||
|
|
@ -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));
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
Subproject commit eb5fdf1007b967be73eee4530d0e17a778d036eb
|
||||
Subproject commit b44e5be9877eceb567416de238725fda0431a83b
|
||||
Loading…
Add table
Reference in a new issue