Fix reference to "forward" prefix

Code was erroneously referencing the string ID, rather than the
contents of the string (sorry!).
master
Tor Houghton 2012-11-05 18:45:04 +01:00
parent d8cd09d46b
commit e8ffce53fe
1 changed files with 1 additions and 1 deletions

View File

@ -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() {