COMP: Fix some compile warnings.

STYLE: Make style a bit more consistent.
This commit is contained in:
Clinton Stimpson 2007-11-03 13:28:09 -04:00
parent c27953b62f
commit 3135561227

View File

@ -113,7 +113,7 @@ QCMakeCachePropertyList QCMakeCacheModel::properties() const
return this->Properties;
}
int QCMakeCacheModel::columnCount ( const QModelIndex & parent ) const
int QCMakeCacheModel::columnCount (const QModelIndex& /*parent*/ ) const
{
return 2;
}
@ -158,7 +158,7 @@ QVariant QCMakeCacheModel::data ( const QModelIndex & index, int role ) const
return QVariant();
}
QModelIndex QCMakeCacheModel::parent ( const QModelIndex & index ) const
QModelIndex QCMakeCacheModel::parent (const QModelIndex& /*index*/) const
{
return QModelIndex();
}