rename KeyServerUploadActivity to UploadKeyActivity

This commit is contained in:
Dominik Schürmann 2014-02-01 18:16:25 +01:00
parent abbdfd48df
commit a891ff2f7c
3 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -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();
}

View File

@ -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);
}