Skip to content

Commit

Permalink
These lines are not really even warnings but notices which should rea…
Browse files Browse the repository at this point in the history
…lly only be displayed with VB_GUI. It's 'legal' for many things to be omitted from a theme either because the themer doesn't rate them as important and/or due to lack of space.
  • Loading branch information
stuartm committed Jun 30, 2011
1 parent 52b393e commit e375552
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions mythtv/libs/libmythui/mythuiutils.cpp
Expand Up @@ -11,16 +11,16 @@
bool ETPrintWarning::Child(const QString &container_name,
const QString &child_name)
{
LOG(VB_GENERAL, LOG_WARNING,
QString("Warning: container '%1' is missing child '%2'")
LOG(VB_GUI, LOG_NOTICE,
QString("Container '%1' is missing child '%2'")
.arg(container_name).arg(child_name));
return false;
}

bool ETPrintWarning::Container(const QString &child_name)
{
LOG(VB_GENERAL, LOG_WARNING,
QString("Warning: no valid container to search for child '%1'")
LOG(VB_GUI, LOG_NOTICE,
QString("No valid container to search for child '%1'")
.arg(child_name));
return false;
}
Expand All @@ -29,15 +29,15 @@ bool ETPrintError::Child(const QString &container_name,
const QString &child_name)
{
LOG(VB_GENERAL, LOG_ERR,
QString("Error: container '%1' is missing child '%2'")
QString("Container '%1' is missing child '%2'")
.arg(container_name).arg(child_name));
return true;
}

bool ETPrintError::Container(const QString &child_name)
{
LOG(VB_GENERAL, LOG_ERR,
QString("Error: no valid container to search for child '%1'")
QString("No valid container to search for child '%1'")
.arg(child_name));
return true;
}

0 comments on commit e375552

Please sign in to comment.