[Pkg-mozext-commits] [adblock-plus-element-hiding-helper] 26/483: Fixing semicolons
David Prévot
taffit at moszumanska.debian.org
Thu Jan 22 21:41:23 UTC 2015
This is an automated email from the git hooks/post-receive script.
taffit pushed a commit to branch master
in repository adblock-plus-element-hiding-helper.
commit 30957a8eae1243beeedcde2474bf51ce972d3dfa
Author: Wladimir Palant <trev at gtchat.de>
Date: Wed Jan 10 18:21:12 2007 +0000
Fixing semicolons
--HG--
extra : convert_revision : svn%3Ad8bf93c1-8190-44a8-bb31-1ea94378a4df/trunk%40623
---
chrome/content/composer.js | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/chrome/content/composer.js b/chrome/content/composer.js
index 48233a9..d001693 100644
--- a/chrome/content/composer.js
+++ b/chrome/content/composer.js
@@ -75,7 +75,7 @@ function TreeView(tree) {
this.getRowProperties = TreeView_getRowProperties;
this.getCellProperties = TreeView_getCellProperties;
- createQIProxy(this, origView)
+ createQIProxy(this, origView);
for (var key in origView) {
if (this.hasOwnProperty(key))
@@ -94,14 +94,14 @@ function createQIProxy(obj, orig) {
throw Components.results.NS_ERROR_NO_INTERFACE;
return obj;
- }
+ };
}
function createPropertyProxy(obj, orig, key) {
if (typeof orig[key] == "function") {
obj[key] = function() {
return orig[key].apply(orig, arguments);
- }
+ };
}
else {
obj.__defineGetter__(key, function() {
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-mozext/adblock-plus-element-hiding-helper.git
More information about the Pkg-mozext-commits
mailing list