Page 1 of 1

Log file errors but working application

Posted: Sat Mar 04, 2006 11:18
by olgarry
Hello,

I've made an application with CEGUI and lots of windows loaded with XML files. It's run but i got a lots of errors in the CEGUI log file like this :

Code: Select all

04/03/2006 11:59:20 (Error)   Exception: Window::getChild - The Window with ID: '1' is not attached to Window 'FlotteInterface/FlotteListe__auto_vscrollbar__'.
04/03/2006 11:59:20 (Error)   Exception: Window::getChild - The Window with ID: '1' is not attached to Window 'FlotteInterface/FlotteListe'.
04/03/2006 11:59:20 (Error)   Exception: Window::getChild - The Window with ID: '2' is not attached to Window 'FlotteInterface/FlotteListe'.


I don't think that's normal but i don't know what to do for solve this problem.

Posted: Sun Mar 05, 2006 15:59
by CrazyEddie
Somewhere in your code you are looking up child windows via an ID, and the child windows do not exist. If you did not add such code, then it could be that you used code from somewhere else that used this technique ;)

HTH

CE.