Fix reference to "forward" prefix

Code was erroneously referencing the string ID, rather than the
contents of the string (sorry!).
fork-5.53.8
Tor Houghton 2012-11-05 18:45:04 +01:00
rodzic d8cd09d46b
commit e8ffce53fe
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -436,7 +436,7 @@ public class ConversationActivity extends SherlockFragmentActivity
registerForContextMenu(sendButton);
if (getIntent().getStringExtra("forwarded_message") != null)
composeText.setText(R.string.ConversationActivity_forward_message_prefix+": " + getIntent().getStringExtra("forwarded_message"));
composeText.setText(getString(R.string.ConversationActivity_forward_message_prefix)+": " + getIntent().getStringExtra("forwarded_message"));
}
private void initializeRecipientsInput() {