mirror of
https://github.com/panda3d/panda3d.git
synced 2025-09-30 08:44:19 -04:00
*** empty log message ***
This commit is contained in:
parent
e1e822f0cf
commit
ab3bba6fce
@ -141,7 +141,7 @@ void GuiManager::add_label(GuiLabel* label) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void GuiManager::remove_region(GuiRegion* region) {
|
void GuiManager::remove_region(GuiRegion* region) {
|
||||||
RegionSet::const_iterator ri;
|
RegionSet::iterator ri;
|
||||||
ri = _regions.find(region);
|
ri = _regions.find(region);
|
||||||
if (ri == _regions.end())
|
if (ri == _regions.end())
|
||||||
gui_cat->warning() << "tried removing region ('" << *region
|
gui_cat->warning() << "tried removing region ('" << *region
|
||||||
@ -153,7 +153,7 @@ void GuiManager::remove_region(GuiRegion* region) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void GuiManager::remove_label(GuiLabel* label) {
|
void GuiManager::remove_label(GuiLabel* label) {
|
||||||
LabelSet::const_iterator li;
|
LabelSet::iterator li;
|
||||||
li = _labels.find(label);
|
li = _labels.find(label);
|
||||||
if (li == _labels.end())
|
if (li == _labels.end())
|
||||||
gui_cat->warning() << "label (0x" << (void*)label
|
gui_cat->warning() << "label (0x" << (void*)label
|
||||||
|
Loading…
x
Reference in New Issue
Block a user