From d5a160b54b084322ab939b10157faf99d9550ce2 Mon Sep 17 00:00:00 2001 From: Ghislain MARY Date: Mon, 10 Dec 2012 16:06:24 +0100 Subject: [PATCH] Fix typo: toogle->toggle. --- src/org/linphone/InCallActivity.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/org/linphone/InCallActivity.java b/src/org/linphone/InCallActivity.java index 98f8bd45d..7fe629207 100644 --- a/src/org/linphone/InCallActivity.java +++ b/src/org/linphone/InCallActivity.java @@ -251,7 +251,7 @@ public class InCallActivity extends FragmentActivity implements if (isVideoEnabled && !isSpeakerEnabled) { - toogleSpeaker(); + toggleSpeaker(); } else { if (isSpeakerEnabled) { speaker.setBackgroundResource(R.drawable.speaker_on); @@ -329,10 +329,10 @@ public class InCallActivity extends FragmentActivity implements switchVideo(isVideoEnabled); } else if (id == R.id.micro) { - toogleMicro(); + toggleMicro(); } else if (id == R.id.speaker) { - toogleSpeaker(); + toggleSpeaker(); } else if (id == R.id.addCall) { goBackToDialer(); @@ -439,7 +439,7 @@ public class InCallActivity extends FragmentActivity implements } } - private void toogleMicro() { + private void toggleMicro() { LinphoneCore lc = LinphoneManager.getLc(); isMicMuted = !isMicMuted; lc.muteMic(isMicMuted); @@ -450,7 +450,7 @@ public class InCallActivity extends FragmentActivity implements } } - private void toogleSpeaker() { + private void toggleSpeaker() { isSpeakerEnabled = !isSpeakerEnabled; if (isSpeakerEnabled) { LinphoneManager.getInstance().routeAudioToSpeaker();