mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 01:09:50 +00:00
Fixed: Virtual method with different parameters warning
This commit is contained in:
parent
4e9788116f
commit
c3bce8874e
2 changed files with 4 additions and 4 deletions
|
@ -321,7 +321,7 @@ namespace NLGUI
|
|||
// \name internal methods
|
||||
|
||||
// Add a group in the current parent group
|
||||
void addGroup (CInterfaceGroup *group, uint beginSpace);
|
||||
void addHtmlGroup (CInterfaceGroup *group, uint beginSpace);
|
||||
|
||||
// Get the current parent group
|
||||
CInterfaceGroup *getCurrentGroup();
|
||||
|
|
|
@ -1965,7 +1965,7 @@ namespace NLGUI
|
|||
|
||||
// Table must fit the container size
|
||||
|
||||
addGroup (table, 0);
|
||||
addHtmlGroup (table, 0);
|
||||
|
||||
_Tables.push_back(table);
|
||||
|
||||
|
@ -3759,7 +3759,7 @@ namespace NLGUI
|
|||
newParagraph->setIndent(_Indent);
|
||||
|
||||
// Add to the group
|
||||
addGroup (newParagraph, beginSpace);
|
||||
addHtmlGroup (newParagraph, beginSpace);
|
||||
_Paragraph = newParagraph;
|
||||
|
||||
paragraphChange ();
|
||||
|
@ -4545,7 +4545,7 @@ namespace NLGUI
|
|||
|
||||
// ***************************************************************************
|
||||
|
||||
void CGroupHTML::addGroup (CInterfaceGroup *group, uint beginSpace)
|
||||
void CGroupHTML::addHtmlGroup (CInterfaceGroup *group, uint beginSpace)
|
||||
{
|
||||
if (!group)
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue