Removed comments.

This commit is contained in:
Robert Osfield
2009-01-28 16:44:46 +00:00
parent 4004b37ee8
commit f9855c35ec
2 changed files with 3 additions and 3 deletions

View File

@@ -417,7 +417,7 @@ void Window::_setWidthAndHeight() {
void Window::_removeFromGeode(Widget* widget) {
if(!widget) return;
widget->_index = 0; // was originally -1, but _index is a unsigned int...
widget->_index = 0;
_setParented(widget, true);

View File

@@ -256,8 +256,8 @@ void WindowManager::childRemoved(unsigned int start, unsigned int numChildren) {
if(!window) continue;
if(_remove(window)) {
window->_index = 0; // was originally -1, but _index is a unsigned int...
window->_index = 0;
window->unmanaged(this);
}
}