summaryrefslogtreecommitdiff
path: root/roundcubemail
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2011-09-17 16:10:55 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2011-09-17 16:10:55 +0000
commit44451f1330b54dc5999db91e06da742e7663a84d (patch)
tree7393ec8bb9ee32872e07b2a9de7d45cade5fc6ac /roundcubemail
parent9c367912e2a547255eb4da3624878e47dd1e0d78 (diff)
- Fix GCC warning in googiespell.js (#1488090)
git-svn-id: https://svn.roundcube.net/trunk@5231 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail')
-rw-r--r--roundcubemail/program/js/googiespell.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/roundcubemail/program/js/googiespell.js b/roundcubemail/program/js/googiespell.js
index 7f465687c..e3fdf7d3b 100644
--- a/roundcubemail/program/js/googiespell.js
+++ b/roundcubemail/program/js/googiespell.js
@@ -167,9 +167,9 @@ this.appendNewMenuItem = function(name, call_back_fn, checker)
this.extra_menu_items.push([name, call_back_fn, checker]);
};
-this.appendCustomMenuBuilder = function(eval, builder)
+this.appendCustomMenuBuilder = function(eval_fn, builder)
{
- this.custom_menu_builder.push([eval, builder]);
+ this.custom_menu_builder.push([eval_fn, builder]);
};
this.setFocus = function()
@@ -462,7 +462,7 @@ this.showErrorWindow = function(elm, id)
var changed = false;
for (var k=0; k<this.custom_menu_builder.length; k++) {
var eb = this.custom_menu_builder[k];
- if(eb[0]((this.results[id]))){
+ if (eb[0](this.results[id])) {
changed = eb[1](this, list, elm);
break;
}