# This patch file was generated by NetBeans IDE # Following Index: paths are relative to: F:\Sources\MainTrunk\core\windows\src\org\netbeans\core\windows # This patch can be applied using context Tools: Patch action on respective folder. # It uses platform neutral UTF-8 encoding and \n newlines. # Above lines and this line are ignored by the patching process. Index: RegistryImpl.java *** F:\Sources\MainTrunk\core\windows\src\org\netbeans\core\windows\RegistryImpl.java Base (1.13) --- F:\Sources\MainTrunk\core\windows\src\org\netbeans\core\windows\RegistryImpl.java Locally Modified (Based On 1.13) *************** *** 154,159 **** --- 154,160 ---- } Set old = new HashSet(openSet); openSet.add(tc); + doFirePropertyChange(PROP_TC_OPENED, null, tc); doFirePropertyChange(PROP_OPENED, old, new HashSet(openSet)); } *************** *** 165,170 **** --- 166,172 ---- Set old = new HashSet(openSet); openSet.remove(tc); + doFirePropertyChange(PROP_TC_CLOSED, null, tc); doFirePropertyChange(PROP_OPENED, old, new HashSet(openSet)); }