diff options
| author | Bananeweizen <bananeweizen@gmx.de> | 2013-05-31 15:05:14 +0200 |
|---|---|---|
| committer | Bananeweizen <bananeweizen@gmx.de> | 2013-05-31 15:05:14 +0200 |
| commit | 15fd64a551793928405d4f12c5b543f12f671577 (patch) | |
| tree | 3995aed4ab3ff4efe3abde2c2d05c8645a85aea4 /main/src | |
| parent | c530117f099bb4bd6bd9e7ac698d737a3f0a0104 (diff) | |
| download | cgeo-15fd64a551793928405d4f12c5b543f12f671577.zip cgeo-15fd64a551793928405d4f12c5b543f12f671577.tar.gz cgeo-15fd64a551793928405d4f12c5b543f12f671577.tar.bz2 | |
refactoring: fix compiler warnings
Diffstat (limited to 'main/src')
| -rw-r--r-- | main/src/cgeo/geocaching/TrackableActivity.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/main/src/cgeo/geocaching/TrackableActivity.java b/main/src/cgeo/geocaching/TrackableActivity.java index 80ffc09..b7f94b5 100644 --- a/main/src/cgeo/geocaching/TrackableActivity.java +++ b/main/src/cgeo/geocaching/TrackableActivity.java @@ -494,11 +494,11 @@ public class TrackableActivity extends AbstractViewPagerActivity<TrackableActivi public class DetailsViewCreator extends AbstractCachingPageViewCreator<ScrollView> { - @InjectView(R.id.goal_box) protected View goalBox; + @InjectView(R.id.goal_box) protected LinearLayout goalBox; @InjectView(R.id.goal) protected TextView goalTextView; - @InjectView(R.id.details_box) protected View detailsBox; + @InjectView(R.id.details_box) protected LinearLayout detailsBox; @InjectView(R.id.details) protected TextView detailsTextView; - @InjectView(R.id.image_box) protected View imageBox; + @InjectView(R.id.image_box) protected LinearLayout imageBox; @InjectView(R.id.details_list) protected LinearLayout detailsList; @InjectView(R.id.image) protected LinearLayout imageView; |
