Skip to content

Commit

Permalink
Fix build warnings about modifying a const variable
Browse files Browse the repository at this point in the history
  • Loading branch information
stuartm committed Jul 14, 2012
1 parent d01b7d2 commit fc8880e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythplugins/mythweather/mythweather/weatherScreen.cpp
Expand Up @@ -237,7 +237,7 @@ QString WeatherScreen::formatDataItem(const QString &key, const QString &value)
}

if (key == "copyrightlogo" && value == "none")
value = "";
return QString();

return value;
}
Expand Down

0 comments on commit fc8880e

Please sign in to comment.