Show a warning when a selector vocabulary can't be found and a static vocabulary is used

svn-id: r44950
This commit is contained in:
Filippos Karapetis 2009-10-11 21:28:52 +00:00
parent 409a1bd0a6
commit bb7cac5b87

View File

@ -406,7 +406,9 @@ void Kernel::loadSelectorNames() {
if (staticSelectorTable.empty())
error("Kernel: Could not retrieve selector names");
else
warning("No selector vocabulary found, using a static one");
for (uint32 i = 0; i < staticSelectorTable.size(); i++) {
_selectorNames.push_back(staticSelectorTable[i]);
if (oldScriptHeader)