mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 11:28:06 +00:00
Fixed misleading method name
This commit is contained in:
parent
a1e39bc1ef
commit
d60d19970f
3 changed files with 3 additions and 3 deletions
|
|
@ -294,7 +294,7 @@ class AccountCreationViewModel
|
|||
}
|
||||
|
||||
@UiThread
|
||||
fun phoneNumberConfirmedByUser() {
|
||||
fun askUserToConfirmPhoneNumber() {
|
||||
coreContext.postOnCoreThread {
|
||||
if (::accountManagerServices.isInitialized) {
|
||||
val dialPlan = selectedDialPlan.value
|
||||
|
|
|
|||
|
|
@ -347,7 +347,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"
|
||||
|
|
|
|||
|
|
@ -300,7 +300,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