From b6103013bf3d85f65062d3f4603ebac03b0ee7a6 Mon Sep 17 00:00:00 2001 From: "so.yu" Date: Tue, 18 Jun 2013 22:11:38 +0900 Subject: [PATCH] Allow the E_UNSUPPORTED_OPERATION by the SetBackButton method when the H/W key exist Change-Id: I359bd68954cbef644d5dd3d9f74b942b7d4eded8 Signed-off-by: so.yu --- src/CertificateSelectorForm.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CertificateSelectorForm.cpp b/src/CertificateSelectorForm.cpp index a3a7fdc..27e889c 100644 --- a/src/CertificateSelectorForm.cpp +++ b/src/CertificateSelectorForm.cpp @@ -147,7 +147,7 @@ CertificateSelectorForm::OnInitializing(void) TryReturnResult(!IsFailed(r), r, r, "[%s] Propagating.", GetErrorMessage(r)); r = pFooter->SetBackButton(); - TryReturnResult(!IsFailed(r), r, r, "[%s] Propagating.", GetErrorMessage(r)); + TryReturnResult(!IsFailed(r) || r == E_UNSUPPORTED_OPERATION, r, r, "[%s] Propagating.", GetErrorMessage(r)); SetFormBackEventListener(this); -- 2.7.4