Hi gurus,
I am starting to see the end of my project now. Apart from the testing that needs to be done I have to go through the code to check that all memory that is allocated is also released. Is searching for "new" in alla files and then se that a delete is done a good approach or will I miss memory allocations doing it this way?
It is a an SDI application so I don't see the meaning in releasing anything in the document destructor. Since I guess memory will be released when closing down the program and the document will not be opened and closed during execution.
Am I missing something???