diff options
author | Dominik Schürmann <dominik@dominikschuermann.de> | 2013-01-17 01:53:49 +0100 |
---|---|---|
committer | Dominik Schürmann <dominik@dominikschuermann.de> | 2013-01-17 01:53:49 +0100 |
commit | f334dea1b52c40a6737caabdb65b562b6038e6c3 (patch) | |
tree | 031dd23229eacfa7815be2b5a837d6c186768ec9 /OpenPGP-Keychain-API-Lib/src/org | |
parent | 40f2355b1ac932d6b8a498c1bcabc9281dabc562 (diff) | |
download | open-keychain-f334dea1b52c40a6737caabdb65b562b6038e6c3.tar.gz open-keychain-f334dea1b52c40a6737caabdb65b562b6038e6c3.tar.bz2 open-keychain-f334dea1b52c40a6737caabdb65b562b6038e6c3.zip |
rename intent actions to use KEYRING instead of KEY
Diffstat (limited to 'OpenPGP-Keychain-API-Lib/src/org')
-rw-r--r-- | OpenPGP-Keychain-API-Lib/src/org/sufficientlysecure/keychain/integration/KeychainIntentHelper.java | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/OpenPGP-Keychain-API-Lib/src/org/sufficientlysecure/keychain/integration/KeychainIntentHelper.java b/OpenPGP-Keychain-API-Lib/src/org/sufficientlysecure/keychain/integration/KeychainIntentHelper.java index c0d2a9fa5..e0c2eb1d6 100644 --- a/OpenPGP-Keychain-API-Lib/src/org/sufficientlysecure/keychain/integration/KeychainIntentHelper.java +++ b/OpenPGP-Keychain-API-Lib/src/org/sufficientlysecure/keychain/integration/KeychainIntentHelper.java @@ -56,14 +56,16 @@ public class KeychainIntentHelper { /** * Select keys, without permission */ - public static final String ACTION_SELECT_PUBLIC_KEYS = APG_INTENT_PREFIX + "SELECT_PUBLIC_KEYS"; - public static final String ACTION_SELECT_SECRET_KEY = APG_INTENT_PREFIX + "SELECT_SECRET_KEY"; + public static final String ACTION_SELECT_PUBLIC_KEYS = APG_INTENT_PREFIX + + "SELECT_PUBLIC_KEYRINGS"; + public static final String ACTION_SELECT_SECRET_KEY = APG_INTENT_PREFIX + + "SELECT_SECRET_KEYRING"; /** * Create key/edit key, without permission */ - public static final String ACTION_CREATE_KEY = APG_INTENT_PREFIX + "CREATE_KEY"; - public static final String ACTION_EDIT_KEY = APG_INTENT_PREFIX + "EDIT_KEY"; + public static final String ACTION_CREATE_KEY = APG_INTENT_PREFIX + "CREATE_KEYRING"; + public static final String ACTION_EDIT_KEY = APG_INTENT_PREFIX + "EDIT_KEYRING"; /** * Import actions |