mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-03 15:45:46 +08:00
Fix GCC7 fallthrough warnings
This commit is contained in:
committed by
Klaus Basan
parent
c0d9aacbb1
commit
ebe23a694b
@@ -113,8 +113,8 @@ namespace BlackMisc
|
||||
{
|
||||
case IndexName: this->setName(variant.value<QString>()); break;
|
||||
case IndexDescription: this->setDescription(variant.value<QString>()); break;
|
||||
case IndexUrl: m_url.setPropertyByIndex(index.copyFrontRemoved(), variant);
|
||||
case IndexSize: this->setSize(variant.toInt());
|
||||
case IndexUrl: m_url.setPropertyByIndex(index.copyFrontRemoved(), variant); break;
|
||||
case IndexSize: this->setSize(variant.toInt()); break;
|
||||
default: CValueObject::setPropertyByIndex(index, variant); break;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user