> If you compile "hello" example and add delete window
> after Fl::run() you will get a crash under windows.
> At least I got it.

Hello, Mikhail. I'm sorry but I don't understand where you found the problem 
with deleting of window. I have written simple example and didn't see any 
errors, all works fine.

int main(int argc, char* argv[])
{
    Fl_Window* wnd = new Fl_Window(200, 200);

    wnd->show();
    Fl::run();

    delete wnd;
    return 0;
}

Can you post here full text of your program that arouse crash?

Nikita Egorov
_______________________________________________
fltk-dev mailing list
fltk-dev@easysw.com
http://lists.easysw.com/mailman/listinfo/fltk-dev

Reply via email to