* Fix a typo in a method name
This commit is contained in:
jean.chalard
2009-05-31 11:44:56 +00:00
parent 2eb67d432c
commit 705631328d
4 changed files with 7 additions and 7 deletions

View File

@@ -114,9 +114,9 @@ GuiLayers::~GuiLayers(){
}
LOG("==Destroying GuiLayers Successful==");
}
int GuiLayers::unstopableRenderInProgress(){
int GuiLayers::unstoppableRenderInProgress(){
for (int i=0; i<nbitems; i++){
if (objects[i]->unstopableRenderInProgress())
if (objects[i]->unstoppableRenderInProgress())
return 1;
}
return 0;