mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-17 13:01:42 +00:00
Fixed: Clang warnings
This commit is contained in:
parent
4a268da708
commit
0afd605acc
2 changed files with 8 additions and 4 deletions
|
@ -2140,7 +2140,8 @@ namespace NLGUI
|
||||||
std::string typeName = "???";
|
std::string typeName = "???";
|
||||||
if (_ChildrenGroups[k])
|
if (_ChildrenGroups[k])
|
||||||
{
|
{
|
||||||
const type_info &ti = typeid(*_ChildrenGroups[k]);
|
NLGUI::CInterfaceGroup *group = _ChildrenGroups[k];
|
||||||
|
const type_info &ti = typeid(*group);
|
||||||
typeName = ti.name();
|
typeName = ti.name();
|
||||||
}
|
}
|
||||||
nlinfo("Group %d, name = %s, type=%s", k, _ChildrenGroups[k] ? _ChildrenGroups[k]->getId().c_str() : "???", typeName.c_str());
|
nlinfo("Group %d, name = %s, type=%s", k, _ChildrenGroups[k] ? _ChildrenGroups[k]->getId().c_str() : "???", typeName.c_str());
|
||||||
|
@ -2156,7 +2157,8 @@ namespace NLGUI
|
||||||
std::string typeName = "???";
|
std::string typeName = "???";
|
||||||
if (_ChildrenGroups[k])
|
if (_ChildrenGroups[k])
|
||||||
{
|
{
|
||||||
const type_info &ti = typeid(*_EltOrder[k]);
|
NLGUI::CViewBase *view = _EltOrder[k];
|
||||||
|
const type_info &ti = typeid(*view);
|
||||||
typeName = ti.name();
|
typeName = ti.name();
|
||||||
}
|
}
|
||||||
CInterfaceElement *el = _EltOrder[k];
|
CInterfaceElement *el = _EltOrder[k];
|
||||||
|
|
|
@ -2488,7 +2488,8 @@ void CInterfaceManager::dumpUI(bool /* indent */)
|
||||||
if (ig->getViews()[k])
|
if (ig->getViews()[k])
|
||||||
{
|
{
|
||||||
info += id;
|
info += id;
|
||||||
info += toString(", type = %s, address=0x%p", typeid(*ig->getViews()[k]).name(), ig->getViews()[k]);
|
NLGUI::CViewBase *view = ig->getViews()[k];
|
||||||
|
info += toString(", type = %s, address=0x%p", typeid(*view).name(), view);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -2504,7 +2505,8 @@ void CInterfaceManager::dumpUI(bool /* indent */)
|
||||||
if (ig->getControls()[k])
|
if (ig->getControls()[k])
|
||||||
{
|
{
|
||||||
info += id;
|
info += id;
|
||||||
info += toString(", type = %s, address=0x%p", typeid(*ig->getControls()[k]).name(), ig->getControls()[k]);
|
NLGUI::CCtrlBase *control = ig->getControls()[k];
|
||||||
|
info += toString(", type = %s, address=0x%p", typeid(*control).name(), control);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue