[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[news.eclipse.platform.swt] Re: Q: Errror org.eclipse.swt.SWTError: No more handles

You need to manage your images. It looks like you TreeLabelProvider just keeps creating images each time it needs one. It should instead create each kind of image only once and then return that same image each time it is needed. Then when the TreeLabelProvider gets its dispose() called, it should dispose of all of the images it created.