Minor changes
This commit is contained in:
parent
158821c0e1
commit
ea628037ca
|
@ -20,7 +20,8 @@ import de.danoeh.antennapod.fragment.gpodnet.GpodnetMainFragment;
|
|||
* Provides actions for adding new podcast subscriptions
|
||||
*/
|
||||
public class AddFeedFragment extends Fragment {
|
||||
private static final String TAG = "AddFeedFragment";
|
||||
|
||||
public static final String TAG = "AddFeedFragment";
|
||||
|
||||
/**
|
||||
* Preset value for url text field.
|
||||
|
|
|
@ -51,7 +51,7 @@ import de.danoeh.antennapod.menuhandler.NavDrawerActivity;
|
|||
*/
|
||||
public class AllEpisodesFragment extends Fragment {
|
||||
|
||||
private static final String TAG = "AllEpisodesFragment";
|
||||
public static final String TAG = "AllEpisodesFragment";
|
||||
|
||||
private static final int EVENTS = EventDistributor.DOWNLOAD_HANDLED |
|
||||
EventDistributor.DOWNLOAD_QUEUED |
|
||||
|
|
|
@ -17,6 +17,8 @@ import de.danoeh.antennapod.R;
|
|||
*/
|
||||
public class DownloadsFragment extends Fragment {
|
||||
|
||||
public static final String TAG = "DownloadsFragment";
|
||||
|
||||
public static final String ARG_SELECTED_TAB = "selected_tab";
|
||||
|
||||
public static final int POS_RUNNING = 0;
|
||||
|
|
|
@ -28,7 +28,7 @@ import de.greenrobot.event.EventBus;
|
|||
|
||||
public class NewEpisodesFragment extends AllEpisodesFragment {
|
||||
|
||||
private static final String TAG = "NewEpisodesFragment";
|
||||
public static final String TAG = "NewEpisodesFragment";
|
||||
|
||||
private static final String PREF_NAME = "PrefNewEpisodesFragment";
|
||||
|
||||
|
|
|
@ -37,7 +37,9 @@ import de.danoeh.antennapod.menuhandler.NavDrawerActivity;
|
|||
import de.greenrobot.event.EventBus;
|
||||
|
||||
public class PlaybackHistoryFragment extends ListFragment {
|
||||
private static final String TAG = "PlaybackHistoryFragment";
|
||||
|
||||
public static final String TAG = "PlaybackHistoryFragment";
|
||||
|
||||
private static final int EVENTS = EventDistributor.PLAYBACK_HISTORY_UPDATE |
|
||||
EventDistributor.PLAYER_STATUS_UPDATE;
|
||||
|
||||
|
|
|
@ -55,7 +55,9 @@ import de.greenrobot.event.EventBus;
|
|||
* Shows all items in the queue
|
||||
*/
|
||||
public class QueueFragment extends Fragment {
|
||||
private static final String TAG = "QueueFragment";
|
||||
|
||||
public static final String TAG = "QueueFragment";
|
||||
|
||||
private static final int EVENTS = EventDistributor.DOWNLOAD_HANDLED |
|
||||
EventDistributor.DOWNLOAD_QUEUED |
|
||||
EventDistributor.PLAYER_STATUS_UPDATE;
|
||||
|
|
|
@ -118,6 +118,7 @@
|
|||
<string-array name="autodl_select_networks_default_values">
|
||||
<item>0</item>
|
||||
</string-array>
|
||||
|
||||
<string-array name="theme_options">
|
||||
<item>@string/pref_theme_title_light</item>
|
||||
<item>@string/pref_theme_title_dark</item>
|
||||
|
|
Loading…
Reference in New Issue