Signed-off-by: Yiming Lv <lvyiming2@huawei.com>
This commit is contained in:
Yiming Lv 2024-08-15 15:27:40 +00:00 committed by Gitee
parent 981ef1f65e
commit 54aa65a708
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
2 changed files with 2 additions and 2 deletions

View File

@ -163,7 +163,7 @@ int32_t SimManager::GetSimState(int32_t slotId, SimState &simState)
return TELEPHONY_ERR_SUCCESS;
}
int32_t GetSimIccStatus(int32_t slotId, IccSimStatus &iccStatus)
int32_t SimManager::GetSimIccStatus(int32_t slotId, IccSimStatus &iccStatus)
{
if (!HasSimCardInner(slotId)) {
iccStatus = IccSimStatus::ICC_CARD_ABSENT;

View File

@ -97,7 +97,7 @@ SimState SimStateManager::GetSimState()
return ret;
}
SimState SimStateManager::GetSimIccStatus()
IccSimStatus SimStateManager::GetSimIccStatus()
{
IccSimStatus ret = IccSimStatus::ICC_CONTENT_UNKNOWN;
if (simStateHandle_ != nullptr) {