mirror of
https://github.com/moparisthebest/open-keychain
synced 2024-11-11 11:35:07 -05:00
fix filename to camelcase
This commit is contained in:
parent
0a279eaae1
commit
190825efc7
@ -22,7 +22,7 @@
|
||||
</intent-filter>
|
||||
</activity>
|
||||
<activity
|
||||
android:name=".OpenPGPProviderActivity"
|
||||
android:name=".OpenPgpProviderActivity"
|
||||
android:label="OpenPGP Provider"
|
||||
android:windowSoftInputMode="stateHidden" />
|
||||
<activity
|
||||
|
@ -67,7 +67,7 @@ public class BaseActivity extends PreferenceActivity {
|
||||
mCryptoProvider.setOnPreferenceClickListener(new OnPreferenceClickListener() {
|
||||
@Override
|
||||
public boolean onPreferenceClick(Preference preference) {
|
||||
startActivity(new Intent(mActivity, OpenPGPProviderActivity.class));
|
||||
startActivity(new Intent(mActivity, OpenPgpProviderActivity.class));
|
||||
|
||||
return false;
|
||||
}
|
||||
|
@ -42,7 +42,7 @@ import android.widget.ListAdapter;
|
||||
import android.widget.TextView;
|
||||
import android.widget.Toast;
|
||||
|
||||
public class OpenPGPProviderActivity extends Activity {
|
||||
public class OpenPgpProviderActivity extends Activity {
|
||||
Activity mActivity;
|
||||
|
||||
EditText mMessage;
|
||||
@ -104,7 +104,7 @@ public class OpenPGPProviderActivity extends Activity {
|
||||
public void run() {
|
||||
mMessage.setText(new String(outputBytes));
|
||||
if (signatureResult != null) {
|
||||
Toast.makeText(OpenPGPProviderActivity.this,
|
||||
Toast.makeText(OpenPgpProviderActivity.this,
|
||||
"signature result:\n" + signatureResult.toString(),
|
||||
Toast.LENGTH_LONG).show();
|
||||
}
|
||||
@ -254,7 +254,7 @@ public class OpenPGPProviderActivity extends Activity {
|
||||
|
||||
// bind to service
|
||||
mCryptoServiceConnection = new OpenPgpServiceConnection(
|
||||
OpenPGPProviderActivity.this, packageName);
|
||||
OpenPgpProviderActivity.this, packageName);
|
||||
mCryptoServiceConnection.bindToService();
|
||||
|
||||
dialog.dismiss();
|
Loading…
Reference in New Issue
Block a user