BlackBerry: Fix missing error string

Change-Id: I674f90eb871fdb0cbb84207a402d434aca966d1e
Reviewed-by: Nicolas Arnaud-Cormos <nicolas@kdab.com>
Reviewed-by: Mehdi Fekari <mfekari@rim.com>
Reviewed-by: Tobias Nätterlund <tobias.naetterlund@kdab.com>
This commit is contained in:
Rafael Roquetto
2013-03-08 17:57:46 -03:00
committed by Rafael Roquetto
parent 17cd161a9d
commit 11fa9797ec
3 changed files with 6 additions and 2 deletions

View File

@@ -237,6 +237,9 @@ void BlackBerryDebugTokenRequestDialog::debugTokenArrived(int status)
case BlackBerryDebugTokenRequester::InferiorProcessWriteError:
errorString += tr("Failed to communicate with the inferior process.");
break;
case BlackBerryDebugTokenRequester::NotYetRegistered:
errorString += tr("Not yet registered to request debug tokens.");
break;
case BlackBerryDebugTokenRequester::UnknownError:
errorString += tr("An unknwon error has occurred.");
break;