Fix comparision between signed and unsigned integer warning

This commit is contained in:
Shubham Jangra 2018-12-12 00:07:21 +05:30
parent c017d3a693
commit e3aa2cf840

View File

@ -109,7 +109,7 @@ int Calendar::types() const
void Calendar::setTypes(int types)
{
if (m_types == types) {
if (m_types == static_cast<Types>(types)) {
return;
}