aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBananeweizen <bananeweizen@gmx.de>2014-05-26 07:00:34 +0200
committerBananeweizen <bananeweizen@gmx.de>2014-05-26 07:00:34 +0200
commit0a57f812af773733a7bf6b831148fad234e089e2 (patch)
tree195ebeeee6a06e528b008481b68806a8d4fec8e3
parent3e65d1f37151fbe1ea870d6fd8059f6b822ab062 (diff)
downloadcgeo-0a57f812af773733a7bf6b831148fad234e089e2.zip
cgeo-0a57f812af773733a7bf6b831148fad234e089e2.tar.gz
cgeo-0a57f812af773733a7bf6b831148fad234e089e2.tar.bz2
remove link to manual
The manual is not updated since 2011 and should not be pointed to any more.
-rw-r--r--main/res/layout/about_help_page.xml16
-rw-r--r--main/src/cgeo/geocaching/AboutActivity.java2
2 files changed, 0 insertions, 18 deletions
diff --git a/main/res/layout/about_help_page.xml b/main/res/layout/about_help_page.xml
index 8444094..0439e22 100644
--- a/main/res/layout/about_help_page.xml
+++ b/main/res/layout/about_help_page.xml
@@ -27,22 +27,6 @@
android:textSize="14sp" />
<TextView
- android:id="@+id/nutshellmanual"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="left"
- android:layout_marginBottom="5dip"
- android:layout_marginLeft="10dip"
- android:layout_marginRight="10dip"
- android:clickable="true"
- android:focusable="true"
- android:linksClickable="false"
- android:text="@string/nutshellmanual"
- android:textColor="?text_color"
- android:textColorLink="?text_color_link"
- android:textSize="14sp" />
-
- <TextView
android:id="@+id/website"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
diff --git a/main/src/cgeo/geocaching/AboutActivity.java b/main/src/cgeo/geocaching/AboutActivity.java
index f46a5a6..5bf0f06 100644
--- a/main/src/cgeo/geocaching/AboutActivity.java
+++ b/main/src/cgeo/geocaching/AboutActivity.java
@@ -87,7 +87,6 @@ public class AboutActivity extends AbstractViewPagerActivity<AboutActivity.Page>
@InjectView(R.id.website) protected TextView website;
@InjectView(R.id.facebook) protected TextView facebook;
@InjectView(R.id.twitter) protected TextView twitter;
- @InjectView(R.id.nutshellmanual) protected TextView nutshellmanual;
@InjectView(R.id.market) protected TextView market;
@InjectView(R.id.faq) protected TextView faq;
@@ -99,7 +98,6 @@ public class AboutActivity extends AbstractViewPagerActivity<AboutActivity.Page>
setClickListener(website, "http://www.cgeo.org/");
setClickListener(facebook, "http://www.facebook.com/pages/cgeo/297269860090");
setClickListener(twitter, "http://twitter.com/android_gc");
- setClickListener(nutshellmanual, "http://manual.cgeo.org/");
setClickListener(faq, "http://faq.cgeo.org/");
market.setOnClickListener(new View.OnClickListener() {