replaced error and progress strings in APG.java with resource IDs as well

This commit is contained in:
Thialfihar
2010-05-13 22:47:19 +00:00
parent b527ae8b6d
commit c0d24306cb
7 changed files with 143 additions and 93 deletions

View File

@@ -543,10 +543,10 @@ public class EncryptActivity extends BaseActivity {
}
if (signOnly) {
Apg.signText(in, out, getSecretKeyId(),
Apg.signText(this, in, out, getSecretKeyId(),
Apg.getPassPhrase(), getDefaultHashAlgorithm(), this);
} else {
Apg.encrypt(in, out, size, useAsciiArmour,
Apg.encrypt(this, in, out, size, useAsciiArmour,
encryptionKeyIds, signatureKeyId,
Apg.getPassPhrase(), this,
getDefaultEncryptionAlgorithm(), getDefaultHashAlgorithm(),