Fix reference to "forward" prefix

Code was erroneously referencing the string ID, rather than the
contents of the string (sorry!).
pull/1/head
Tor Houghton 13 years ago
parent d8cd09d46b
commit e8ffce53fe

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

Loading…
Cancel
Save