mirror of
https://github.com/moparisthebest/open-keychain
synced 2024-11-06 17:25:05 -05:00
rename KeyServerUploadActivity to UploadKeyActivity
This commit is contained in:
parent
abbdfd48df
commit
a891ff2f7c
@ -243,7 +243,7 @@
|
||||
android:configChanges="orientation|screenSize|keyboardHidden|keyboard"
|
||||
android:label="@string/title_key_server_query" />
|
||||
<activity
|
||||
android:name=".ui.KeyServerUploadActivity"
|
||||
android:name=".ui.UploadKeyActivity"
|
||||
android:configChanges="orientation|screenSize|keyboardHidden|keyboard"
|
||||
android:label="@string/title_send_key" />
|
||||
<activity
|
||||
|
@ -44,7 +44,7 @@ import com.beardedhen.androidbootstrap.BootstrapButton;
|
||||
*
|
||||
* Sends the selected public key to a key server
|
||||
*/
|
||||
public class KeyServerUploadActivity extends SherlockFragmentActivity {
|
||||
public class UploadKeyActivity extends SherlockFragmentActivity {
|
||||
private BootstrapButton mUploadButton;
|
||||
private Spinner mKeyServerSpinner;
|
||||
|
||||
@ -111,7 +111,7 @@ public class KeyServerUploadActivity extends SherlockFragmentActivity {
|
||||
|
||||
if (message.arg1 == KeychainIntentServiceHandler.MESSAGE_OKAY) {
|
||||
|
||||
Toast.makeText(KeyServerUploadActivity.this, R.string.key_send_success,
|
||||
Toast.makeText(UploadKeyActivity.this, R.string.key_send_success,
|
||||
Toast.LENGTH_SHORT).show();
|
||||
finish();
|
||||
}
|
@ -384,7 +384,7 @@ public class ViewKeyActivity extends SherlockFragmentActivity implements
|
||||
}
|
||||
|
||||
private void uploadToKeyserver(Uri dataUri) {
|
||||
Intent uploadIntent = new Intent(this, KeyServerUploadActivity.class);
|
||||
Intent uploadIntent = new Intent(this, UploadKeyActivity.class);
|
||||
uploadIntent.setData(dataUri);
|
||||
startActivityForResult(uploadIntent, Id.request.export_to_server);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user