mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-29 08:21:12 +02:00
CAudioPlayerGui: replace showGlobalStatus() with showStatus()
This commit is contained in:
@@ -1141,7 +1141,7 @@ void CAudioPlayerGui::scanXmlData(xmlDocPtr answer_parser, const char *nametag,
|
|||||||
listPos++;
|
listPos++;
|
||||||
// show status
|
// show status
|
||||||
int global = 100*listPos / maxProgress;
|
int global = 100*listPos / maxProgress;
|
||||||
progress.showGlobalStatus(global);
|
progress.showStatus(global);
|
||||||
#ifdef LCD_UPDATE
|
#ifdef LCD_UPDATE
|
||||||
CVFD::getInstance()->showProgressBar(global, "read xmldata...");
|
CVFD::getInstance()->showProgressBar(global, "read xmldata...");
|
||||||
CVFD::getInstance()->setMode(CVFD::MODE_PROGRESSBAR);
|
CVFD::getInstance()->setMode(CVFD::MODE_PROGRESSBAR);
|
||||||
@@ -1237,7 +1237,7 @@ bool CAudioPlayerGui::openFilebrowser(void)
|
|||||||
currentProgress++;
|
currentProgress++;
|
||||||
// show status
|
// show status
|
||||||
int global = 100*currentProgress/maxProgress;
|
int global = 100*currentProgress/maxProgress;
|
||||||
progress.showGlobalStatus(global);
|
progress.showStatus(global);
|
||||||
progress.showStatusMessageUTF(files->Name);
|
progress.showStatusMessageUTF(files->Name);
|
||||||
#ifdef LCD_UPDATE
|
#ifdef LCD_UPDATE
|
||||||
CVFD::getInstance()->showProgressBar(global, "read metadata...");
|
CVFD::getInstance()->showProgressBar(global, "read metadata...");
|
||||||
@@ -1431,7 +1431,7 @@ bool CAudioPlayerGui::openSCbrowser(void)
|
|||||||
currentProgress++;
|
currentProgress++;
|
||||||
// show progress
|
// show progress
|
||||||
int global = 100*currentProgress/maxProgress;
|
int global = 100*currentProgress/maxProgress;
|
||||||
progress.showGlobalStatus(global);
|
progress.showStatus(global);
|
||||||
progress.showStatusMessageUTF(files->Name);
|
progress.showStatusMessageUTF(files->Name);
|
||||||
#ifdef LCD_UPDATE
|
#ifdef LCD_UPDATE
|
||||||
CVFD::getInstance()->showProgressBar(global, "read metadata...");
|
CVFD::getInstance()->showProgressBar(global, "read metadata...");
|
||||||
@@ -2502,7 +2502,7 @@ void CAudioPlayerGui::buildSearchTree()
|
|||||||
it!=m_playlist.end(); ++it)
|
it!=m_playlist.end(); ++it)
|
||||||
{
|
{
|
||||||
listPos++;
|
listPos++;
|
||||||
progress.showGlobalStatus(100*listPos / maxProgress);
|
progress.showStatus(100*listPos / maxProgress);
|
||||||
progress.showStatusMessageUTF(it->Filename);
|
progress.showStatusMessageUTF(it->Filename);
|
||||||
unsigned char firstChar = getFirstChar(*it);
|
unsigned char firstChar = getFirstChar(*it);
|
||||||
const std::pair<CTitle2Pos::iterator,bool> item =
|
const std::pair<CTitle2Pos::iterator,bool> item =
|
||||||
|
Reference in New Issue
Block a user