bug 221599 and 225150: remove ununused setter/getter in overrideHandler.js

r=biesi, sr=bz
This commit is contained in:
chanial%noos.fr 2003-11-09 21:51:59 +00:00
parent a2acace4cb
commit a8a20d2f63
11 changed files with 0 additions and 103 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 369 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 172 B

View File

@ -91,9 +91,3 @@
#disabledDomains {
max-height: 13em;
}
/* ::::: File icon (32x32) ::::: */
.file-icon-large {
list-style-image: url("chrome://communicator/skin/icons/content-large.gif");
}

View File

@ -62,8 +62,6 @@ classic.jar:
skin/classic/communicator/icons/pg-landscape-small.gif (communicator/icons/pg-landscape-small.gif)
skin/classic/communicator/icons/pg-portrait.gif (communicator/icons/pg-portrait.gif)
skin/classic/communicator/icons/pg-portrait-small.gif (communicator/icons/pg-portrait-small.gif)
skin/classic/communicator/icons/content-large.gif (communicator/icons/content-large.gif)
skin/classic/communicator/icons/content-small.gif (communicator/icons/content-small.gif)
skin/classic/communicator/icons/search-act.gif (communicator/icons/search-act.gif)
skin/classic/communicator/icons/search.gif (communicator/icons/search.gif)
skin/classic/communicator/icons/search-hov.gif (communicator/icons/search-hov.gif)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 382 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 173 B

View File

@ -92,10 +92,3 @@
max-height: 13em;
}
/* ::::: File icon (32x32) ::::: */
.file-icon-large {
list-style-image: url("chrome://communicator/skin/icons/content-large.gif");
}

View File

@ -28,8 +28,6 @@ modern.jar:
skin/modern/communicator/directory/file-folder-open.gif (communicator/directory/file-folder-open.gif)
skin/modern/communicator/directory/file-icon.gif (communicator/directory/file-icon.gif)
skin/modern/communicator/directory/directory.css (communicator/directory/directory.css)
skin/modern/communicator/icons/content-large.gif (communicator/icons/content-large.gif)
skin/modern/communicator/icons/content-small.gif (communicator/icons/content-small.gif)
skin/modern/communicator/icons/loading.gif (communicator/icons/loading.gif)
skin/modern/communicator/icons/lock-broken.gif (communicator/icons/lock-broken.gif)
skin/modern/communicator/icons/lock-insecure.gif (communicator/icons/lock-insecure.gif)

View File

@ -459,34 +459,6 @@ HandlerOverride.prototype = {
this.changeMIMEStuff(MIME_URI(this.mimeType), "editable", aIsEditableString);
return aIsEditableString;
},
get largeIconURL()
{
var url = this.getLiteralForContentType(this.URI, "largeIcon");
if (!url)
url = "chrome://communicator/skin/content-large.gif";
return url;
},
set largeIconURL(aLargeIconURL)
{
this.changeMIMEStuff(MIME_URI(this.mimeType), "largeIcon", aLargeIconURL);
return aLargeIconURL;
},
get smallIconURL()
{
var url = this.getLiteralForContentType(this.URI, "smallIcon");
if (!url)
url = "chrome://communicator/skin/content-small.gif";
return url;
},
set smallIconURL(aSmallIconURL)
{
this.changeMIMEStuff(MIME_URI(this.mimeType), "smallIcon", aSmallIconURL);
return aSmallIconURL;
},
get extensions()
{

View File

@ -90,38 +90,6 @@ HandlerOverride.prototype = {
else
changeMIMEStuff(MIME_URI(this.mimeType), "editable", aIsEditableString);
},
get largeIconURL()
{
var url = getLiteralForContentType(this.URI, "largeIcon");
if (!url)
url = "chrome://communicator/skin/content-large.gif";
return url;
},
set largeIconURL(aLargeIconURL)
{
if (!this.mUpdateMode)
assertMIMEStuff(MIME_URI(this.mimeType), "largeIcon", aLargeIconURL);
else
changeMIMEStuff(MIME_URI(this.mimeType), "largeIcon", aLargeIconURL);
},
get smallIconURL()
{
var url = getLiteralForContentType(this.URI, "smallIcon");
if (!url)
url = "chrome://communicator/skin/content-small.gif";
return url;
},
set smallIconURL(aSmallIconURL)
{
if (!this.mUpdateMode)
assertMIMEStuff(MIME_URI(this.mimeType), "smallIcon", aSmallIconURL);
else
changeMIMEStuff(MIME_URI(this.mimeType), "smallIcon", aSmallIconURL);
},
get extensions()
{

View File

@ -46,32 +46,6 @@ HandlerOverride.prototype = {
{
changeMIMEStuff(MIME_URI(this.mimeType), "editable", aIsEditableString);
},
get largeIconURL()
{
var url = getLiteralForContentType(this.URI, "largeIcon");
if (!url)
url = "chrome://communicator/skin/content-large.gif";
return url;
},
set largeIconURL(aLargeIconURL)
{
changeMIMEStuff(MIME_URI(this.mimeType), "largeIcon", aLargeIconURL);
},
get smallIconURL()
{
var url = getLiteralForContentType(this.URI, "smallIcon");
if (!url)
url = "chrome://communicator/skin/content-small.gif";
return url;
},
set smallIconURL(aSmallIconURL)
{
changeMIMEStuff(MIME_URI(this.mimeType), "smallIcon", aSmallIconURL);
},
get extensions()
{