From bb164ee43f6776b5edbbf8c93bd65191e94dc64c Mon Sep 17 00:00:00 2001 From: Thom Johansen Date: Thu, 19 Jan 2006 09:42:28 +0000 Subject: Attempt fix to broken builds. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8384 a1c6a512-1295-4272-9138-f99709370657 --- apps/gui/gwps-common.c | 4 +++- apps/gui/statusbar.c | 2 ++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/apps/gui/gwps-common.c b/apps/gui/gwps-common.c index 37f4fea310..b2d06bc61f 100644 --- a/apps/gui/gwps-common.c +++ b/apps/gui/gwps-common.c @@ -652,7 +652,8 @@ static char* get_tag(struct wps_data* wps_data, strncpy(buf, "?h ?m", buf_size); return buf; } - + +#ifdef HAVE_CHARGING case 'p': /* External power plugged in? */ { if(charger_input_state==CHARGER) @@ -660,6 +661,7 @@ static char* get_tag(struct wps_data* wps_data, else return NULL; } +#endif #if defined(HAVE_CHARGE_CTRL) || \ defined (HAVE_CHARGE_STATE) || \ CONFIG_BATTERY == BATT_LIION2200 diff --git a/apps/gui/statusbar.c b/apps/gui/statusbar.c index b4070394f9..d8e611af85 100644 --- a/apps/gui/statusbar.c +++ b/apps/gui/statusbar.c @@ -127,7 +127,9 @@ void gui_statusbar_draw(struct gui_statusbar * bar, bool force_redraw) #endif /* HAVE_LCD_CHARCELLS */ bar->info.volume = sound_val2phys(SOUND_VOLUME, global_settings.volume); +#ifdef HAVE_CHARGING bar->info.inserted = (charger_input_state == CHARGER); +#endif bar->info.battlevel = battery_level(); bar->info.battery_safe = battery_level_safe(); -- cgit v1.2.3