Justin Howard / Mbed 2 deprecated AdaFruit_RGBLCD

Dependencies:   AdaFruit_RGBLCDShield MCP23017 mbed RTclock

Dependents:   SX1276_GPS

Fork of MCP_test by Wim Huiskamp

Revision:
15:d1eaddb363be
Parent:
13:9641bc42db92
Child:
17:731a47339cb8
diff -r 8b359e1e68f3 -r d1eaddb363be MenuManager.cpp
--- a/MenuManager.cpp	Mon Aug 11 19:13:08 2014 +0000
+++ b/MenuManager.cpp	Tue Aug 12 04:25:08 2014 +0000
@@ -162,12 +162,12 @@
 {
     m_cLCD.setCursor(2,0);
     
-    if (m_pModules[m_nMenuPos]->canRefresh() || !in_bRefresh) m_pModules[m_nMenuPos]->show();
+    if (m_pModules[m_nMenuPos]->canRefresh() || !in_bRefresh) m_pModules[m_nMenuPos]->show(in_bRefresh);
     
     size_t nPos = (m_nMenuPos + 1) % m_nModules;
     m_cLCD.setCursor(2,1);
     
-    if (m_pModules[nPos]->canRefresh() || !in_bRefresh) m_pModules[nPos]->show();
+    if (m_pModules[nPos]->canRefresh() || !in_bRefresh) m_pModules[nPos]->show(in_bRefresh);
 }
 
 void MenuManager::showTracking(bool in_bShow)