On 7/10/05, Brian Hechinger <[EMAIL PROTECTED]> wrote: > i certainly am. now the whole thing in lib/ builds, and we die in src/ with: > > "Window.hh", line 164: Error: BlackboxWindow::ClientState is not accessible > from BlackboxWindow::_client. > 1 Error(s) detected. > > almost there!! ;)
:-)) Move the declaration of struct ClientState outside the class declaration. Apparently the compiler doesn't like nested types. I did a grep of the sources and ClientState is only used in _client, so it is safe to move it out. Carlos -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED] List archives: http://asgardsrealm.net/lurker/splash/index.html
