From ab3bba6fce3f73e8de1e316bf41295df981eda85 Mon Sep 17 00:00:00 2001 From: Cary Sandvig Date: Tue, 31 Oct 2000 21:31:01 +0000 Subject: [PATCH] *** empty log message *** --- panda/src/gui/guiManager.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/panda/src/gui/guiManager.cxx b/panda/src/gui/guiManager.cxx index 3ae23f2ba6..1aa16cdf7b 100644 --- a/panda/src/gui/guiManager.cxx +++ b/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