Changeset 873
- Timestamp:
- 2008-03-12 00:12:21 (10 months ago)
- Files:
-
- trunk/chrome/content/common/bindings.xml (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/chrome/content/common/bindings.xml
r853 r873 99 99 <implementation> 100 100 <constructor><![CDATA[ 101 this._load(); 101 try { 102 this._load(); 103 } 104 catch (ex) { 105 DTA_debug.dump("Loading of saveddropdown failed:", ex); 106 } 102 107 ]]></constructor> 103 108 <field name="modified">false</field> … … 116 121 try { 117 122 return eval(DTA_preferences.getMultiByteDTA(this._pref, rv)); 118 } catch (ex) { 123 } 124 catch (ex) { 125 DTA_debug.dump("Cannot initialize from preferences:", ex); 119 126 return eval(rv); 120 127 } … … 139 146 140 147 while (popup.hasChildNodes()) { 141 drop.removeChild(popup.lastChild);148 popup.removeChild(popup.lastChild); 142 149 } 143 150
