Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 311694
Collapse All | Expand All

(-)js/org/eclipse/rwt/widgets/MultiCellWidget.js (-2 / +6 lines)
Lines 1-5 Link Here
1
/*******************************************************************************
1
/*******************************************************************************
2
 * Copyright (c) 2009 EclipseSource and others. All rights reserved.
2
 * Copyright (c) 2009, 2010 EclipseSource and others. All rights reserved.
3
 * This program and the accompanying materials are made available under the
3
 * This program and the accompanying materials are made available under the
4
 * terms of the Eclipse Public License v1.0 which accompanies this distribution,
4
 * terms of the Eclipse Public License v1.0 which accompanies this distribution,
5
 * and is available at http://www.eclipse.org/legal/epl-v10.html
5
 * and is available at http://www.eclipse.org/legal/epl-v10.html
Lines 243-249 Link Here
243
      } else {
243
      } else {
244
        this.addToQueue( "updateContent" );
244
        this.addToQueue( "updateContent" );
245
      }
245
      }
246
      this.__cellData[ cell ][ 1 ] = value;
246
      var newValue = value;
247
      if( this._isImageCell( cell ) ) {
248
        newValue = qx.io.Alias.getInstance().resolve( newValue );
249
      }
250
      this.__cellData[ cell ][ 1 ] = newValue;
247
    },
251
    },
248
     
252
     
249
    /**
253
    /**

Return to bug 311694