* #36505: toggle speakers button added in call screen
Ringtones are routed to speakers for incoming calls
diff --git a/src/org/sflphone/fragments/CallFragment.java b/src/org/sflphone/fragments/CallFragment.java
index 3f68067..01f2655 100644
--- a/src/org/sflphone/fragments/CallFragment.java
+++ b/src/org/sflphone/fragments/CallFragment.java
@@ -252,7 +252,7 @@
         callStatusTxt = (TextView) rootView.findViewById(R.id.call_status_txt);
         call_icon = BitmapFactory.decodeResource(getResources(), R.drawable.ic_action_call);
         
-        speakers = (ToggleButton) rootView.findViewById(R.id.toggle_speaker);
+        speakers = (ToggleButton) rootView.findViewById(R.id.speaker_toggle);
         
         speakers.setOnCheckedChangeListener(new OnCheckedChangeListener() {