diff options
author | hyun lee <hyunn.lee@samsung.com> | 2013-10-14 13:48:21 +0900 |
---|---|---|
committer | hyun lee <hyunn.lee@samsung.com> | 2013-10-14 13:48:21 +0900 |
commit | fb48f6d0fa9e7c065f00c54b353e1b9a5826b6a5 (patch) | |
tree | 7c9b49af393476b991cc96adab1ac6787c75783e | |
parent | 99583ccea0a7055d3f7fdb6a907e2ece22548329 (diff) | |
download | WebViewer-fb48f6d0fa9e7c065f00c54b353e1b9a5826b6a5.tar.gz WebViewer-fb48f6d0fa9e7c065f00c54b353e1b9a5826b6a5.tar.bz2 WebViewer-fb48f6d0fa9e7c065f00c54b353e1b9a5826b6a5.zip |
Apply capital letter of error message2.2.1_releasetizen_2.2
Change-Id: I632202b408f07916b16a07bdcbc3be305b251582
Signed-off-by: hyun lee <hyunn.lee@samsung.com>
-rw-r--r-- | project/src/WebViewer.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/project/src/WebViewer.cpp b/project/src/WebViewer.cpp index cdae6e3..7613e22 100644 --- a/project/src/WebViewer.cpp +++ b/project/src/WebViewer.cpp @@ -349,7 +349,7 @@ WebViewer::OnLoadingErrorOccurred(LoadingErrorType error, const String& reason) { case WEB_REQUEST_TIMEOUT: { - errReason = Tizen::Base::String(L"Request timeout"); + errReason = Tizen::Base::String(L"Request Timeout"); } break; @@ -373,7 +373,7 @@ WebViewer::OnLoadingErrorOccurred(LoadingErrorType error, const String& reason) case WEB_HTTP_RESPONSE: { - errReason = Tizen::Base::String(L"HTTP response"); + errReason = Tizen::Base::String(L"HTTP Response"); } break; @@ -392,7 +392,7 @@ WebViewer::OnLoadingErrorOccurred(LoadingErrorType error, const String& reason) case WEB_ERROR_UNKNOWN: default: { - errReason = Tizen::Base::String(L"An Unknown error"); + errReason = Tizen::Base::String(L"An Unknown Error"); } break; } |