Skip to content

Commit

Permalink
Suppress 2 compiler warnings after the Qt -no-stl fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Kendall committed Jun 19, 2011
1 parent f101e63 commit 20725b0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mythtv/programs/mythfrontend/playbackboxhelper.cpp
Expand Up @@ -531,7 +531,7 @@ void PlaybackBoxHelper::UpdateFreeSpace(void)
QVector<FileSystemInfo> fsInfos = RemoteGetFreeSpace();

QMutexLocker locker(&m_lock);
for (uint i = 0; i < fsInfos.size(); i++)
for (int i = 0; i < fsInfos.size(); i++)
{
if (fsInfos[i].getPath() == "TotalDiskSpace")
{
Expand Down
2 changes: 1 addition & 1 deletion mythtv/programs/mythfrontend/statusbox.cpp
Expand Up @@ -1204,7 +1204,7 @@ void StatusBox::doMachineStatus()
QString hostnames;

QVector<FileSystemInfo> fsInfos = RemoteGetFreeSpace();
for (uint i=0; i<fsInfos.size(); ++i)
for (int i = 0; i < fsInfos.size(); ++i)
{
// For a single-directory installation just display the totals
if ((fsInfos.size() == 2) && (i == 0) &&
Expand Down

0 comments on commit 20725b0

Please sign in to comment.