Browse Source

*** empty log message ***

Cary Sandvig 25 years ago
parent
commit
ab3bba6fce
1 changed files with 2 additions and 2 deletions
  1. 2 2
      panda/src/gui/guiManager.cxx

+ 2 - 2
panda/src/gui/guiManager.cxx

@@ -141,7 +141,7 @@ void GuiManager::add_label(GuiLabel* label) {
 }
 
 void GuiManager::remove_region(GuiRegion* region) {
-  RegionSet::const_iterator ri;
+  RegionSet::iterator ri;
   ri = _regions.find(region);
   if (ri == _regions.end())
     gui_cat->warning() << "tried removing region ('" << *region
@@ -153,7 +153,7 @@ void GuiManager::remove_region(GuiRegion* region) {
 }
 
 void GuiManager::remove_label(GuiLabel* label) {
-  LabelSet::const_iterator li;
+  LabelSet::iterator li;
   li = _labels.find(label);
   if (li == _labels.end())
     gui_cat->warning() << "label (0x" << (void*)label