Community
Participate
Working Groups
Build Identifier: 20100618-0524 The resetTab() method in PropertiesEditionViewer doesn't dispose the CTabItem-Controls. So I get a "No more handles" exception after changing the selection in the master-section frequently. After modifing the method as follows, I didn't run out of handles anymore: /** * Reset all the tabs of the folder. */ private void resetTab() { if (folder.getItemCount() > 0) { CTabItem[] items = folder.getItems(); for (int i = 0; i < items.length; i++) { CTabItem cTabItem = items[i]; cTabItem.getControl().dispose(); //adding this line solves my problem. cTabItem.dispose(); } } } Reproducible: Always Steps to Reproduce: 1. use the worlcupforecast-application. 2. change the selection in the master-section serveral times. 3.
Applyied