Changeset 784c0cf in github


Ignore:
Timestamp:
Sep 17, 2011 12:10:55 PM (20 months ago)
Author:
alecpl <alec@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.7, release-0.8
Children:
30f5055
Parents:
47672bf
Message:
  • Fix GCC warning in googiespell.js (#1488090)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • program/js/googiespell.js

    rde36863 r784c0cf  
    168168}; 
    169169 
    170 this.appendCustomMenuBuilder = function(eval, builder) 
    171 { 
    172     this.custom_menu_builder.push([eval, builder]); 
     170this.appendCustomMenuBuilder = function(eval_fn, builder) 
     171{ 
     172    this.custom_menu_builder.push([eval_fn, builder]); 
    173173}; 
    174174 
     
    463463    for (var k=0; k<this.custom_menu_builder.length; k++) { 
    464464        var eb = this.custom_menu_builder[k]; 
    465         if(eb[0]((this.results[id]))){ 
     465        if (eb[0](this.results[id])) { 
    466466            changed = eb[1](this, list, elm); 
    467467            break; 
Note: See TracChangeset for help on using the changeset viewer.