Show empty checkbox if module can be loaded by the topic column.

Fix const correctnes of the CModInfo::SupportsType method.
This commit is contained in:
Vasily Fomin
2014-06-01 21:37:39 +02:00
parent 16b268deef
commit 4338ae5cc5
5 changed files with 50 additions and 20 deletions
+1 -1
View File
@@ -203,7 +203,7 @@ public:
return (GetName() < Info.GetName());
}
bool SupportsType(EModuleType eType) {
bool SupportsType(EModuleType eType) const {
return m_seType.find(eType) != m_seType.end();
}