1
0
mirror of http://galexander.org/git/simplesshd.git synced 2025-06-27 15:02:32 +00:00

fix typos in definition of startstop_clicked()

This commit is contained in:
Greg Alexander 2014-12-16 16:49:54 -05:00
parent cbb8581d03
commit 41faa118cc
2 changed files with 2 additions and 2 deletions

View File

@ -80,5 +80,5 @@
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:text="Start" android:text="Start"
android:textAppearance="?android:attr/textAppearanceLarge" android:textAppearance="?android:attr/textAppearanceLarge"
android:onClick="starstop_clicked" /> android:onClick="startstop_clicked" />
</LinearLayout> </LinearLayout>

View File

@ -50,7 +50,7 @@ public class SimpleSSHD extends Activity
} }
} }
private void startstop_clicked(View v) { public void startstop_clicked(View v) {
save_prefs(); save_prefs();
Intent i = new Intent(this, SimpleSSHDService.class); Intent i = new Intent(this, SimpleSSHDService.class);
if (SimpleSSHDService.is_started()) { if (SimpleSSHDService.is_started()) {