Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: src/org/adblockplus/android/ConfigurationActivity.java

Issue 9643003: Improve manual proxy configuration (Closed)
Patch Set: Created March 6, 2013, 2:13 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/org/adblockplus/android/ConfigurationActivity.java
===================================================================
--- a/src/org/adblockplus/android/ConfigurationActivity.java
+++ b/src/org/adblockplus/android/ConfigurationActivity.java
@@ -39,7 +39,7 @@
setContentView(R.layout.configuration);
port = getIntent().getIntExtra("port", 0);
String msg1 = getString(R.string.msg_notraffic);
- String msg2 = getString(R.string.msg_configuration, port);
+ String msg2 = getString(R.string.msg_configuration);
Andrey Novikov 2013/03/07 10:26:34 This activity is for 2.x devices also, see my comm
((TextView) findViewById(R.id.message_text)).setText(Html.fromHtml(msg1 + " " + msg2));
}

Powered by Google App Engine
This is Rietveld