In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] says... > Hi, > In my destructor, I am trying to delete the memory of Fl_window. > With "delete Fl_window" I get an error that 'Trying to delete object with > non-zero reference count'. With Fl_Window->Delete(), the error is Fl_Window > has no method Delete. Could someone please help me here? > Thanks. > Suja. >
try w->~Fl_Double_Window(); or w->~Fl_Window(); where 'w' is the name you gave to the window. Cheers Richard _______________________________________________ fltk mailing list [email protected] http://lists.easysw.com/mailman/listinfo/fltk

