alecpl
2011-09-17 784c0cf54c65967b5fe4e666ecab1d94a4f4e022
- Fix GCC warning in googiespell.js (#1488090)


1 files modified
6 ■■■■ changed files
program/js/googiespell.js 6 ●●●● patch | view | raw | blame | history
program/js/googiespell.js
@@ -167,9 +167,9 @@
    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 @@
    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;
        }