Fix reference to "forward" prefix
Code was erroneously referencing the string ID, rather than the contents of the string (sorry!).
This commit is contained in:
parent
d8cd09d46b
commit
e8ffce53fe
1 changed files with 1 additions and 1 deletions
|
@ -436,7 +436,7 @@ public class ConversationActivity extends SherlockFragmentActivity
|
||||||
registerForContextMenu(sendButton);
|
registerForContextMenu(sendButton);
|
||||||
|
|
||||||
if (getIntent().getStringExtra("forwarded_message") != null)
|
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() {
|
private void initializeRecipientsInput() {
|
||||||
|
|
Loading…
Add table
Reference in a new issue