mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 03:18:06 +00:00
Fixed misleading method name
This commit is contained in:
parent
d9ab840570
commit
d75c48cd34
3 changed files with 3 additions and 3 deletions
|
|
@ -308,7 +308,7 @@ class AccountCreationViewModel
|
|||
}
|
||||
|
||||
@UiThread
|
||||
fun phoneNumberConfirmedByUser() {
|
||||
fun askUserToConfirmPhoneNumber() {
|
||||
coreContext.postOnCoreThread {
|
||||
if (::accountManagerServices.isInitialized) {
|
||||
val dialPlan = selectedDialPlan.value
|
||||
|
|
|
|||
|
|
@ -351,7 +351,7 @@
|
|||
app:layout_constraintBottom_toBottomOf="@id/password" />
|
||||
|
||||
<androidx.appcompat.widget.AppCompatTextView
|
||||
android:onClick="@{() -> viewModel.phoneNumberConfirmedByUser()}"
|
||||
android:onClick="@{() -> viewModel.askUserToConfirmPhoneNumber()}"
|
||||
android:enabled="@{viewModel.createEnabled && !viewModel.operationInProgress, default=false}"
|
||||
style="@style/primary_button_label_style"
|
||||
android:id="@+id/create"
|
||||
|
|
|
|||
|
|
@ -303,7 +303,7 @@
|
|||
app:layout_constraintBottom_toBottomOf="@id/password" />
|
||||
|
||||
<androidx.appcompat.widget.AppCompatTextView
|
||||
android:onClick="@{() -> viewModel.phoneNumberConfirmedByUser()}"
|
||||
android:onClick="@{() -> viewModel.askUserToConfirmPhoneNumber()}"
|
||||
android:enabled="@{viewModel.createEnabled && !viewModel.operationInProgress, default=false}"
|
||||
style="@style/primary_button_label_style"
|
||||
android:id="@+id/create"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue