Changeset 1029
- Timestamp:
- 08/02/08 16:23:09 (1 month ago)
- Files:
-
- trunk/chrome/content/dta/manager.js (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/chrome/content/dta/manager.js
r1028 r1029 935 935 }, 936 936 set description(nv) { 937 if (nv = this._description) { 938 return nv; 939 } 937 940 this._description = nv; 938 941 this.rebuildDestination(); … … 946 949 }, 947 950 set pathName(nv) { 948 this._pathName = nv.toString(); 951 nv = nv.toString(); 952 if (this._pathName == nv) { 953 return nv; 954 } 955 this._pathName = nv; 949 956 this.rebuildDestination(); 950 957 this.invalidate(); … … 957 964 }, 958 965 set mask(nv) { 966 if (this._mask == nv) { 967 return nv; 968 } 959 969 this._mask = nv; 960 970 this.rebuildDestination(); … … 970 980 }, 971 981 set destinationName(nv) { 982 if (this.destinationNameOverride == nv) { 983 return this._destinationNameFull; 984 } 972 985 this.destinationNameOverride = nv; 973 986 this.rebuildDestination();
