Update of /cvsroot/qooxdoo/qooxdoo/source/script/widgets
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14162/source/script/widgets
Modified Files:
Tag: renderer
QxListViewContentCellImage.js
Log Message:
Fixed manager access
Index: QxListViewContentCellImage.js
===================================================================
RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/widgets/Attic/QxListViewContentCellImage.js,v
retrieving revision 1.1.2.10
retrieving revision 1.1.2.11
diff -u -d -r1.1.2.10 -r1.1.2.11
--- QxListViewContentCellImage.js 16 Jan 2006 16:11:57 -0000 1.1.2.10
+++ QxListViewContentCellImage.js 30 Jan 2006 11:33:33 -0000 1.1.2.11
@@ -53,7 +53,7 @@
{
if (this._initialLayoutDone)
{
- return this._updateContent(vSource == QxConst.CORE_EMPTY ? this._manager.getBlank() : this._manager.buildURI(vSource));
+ return this._updateContent(vSource == QxConst.CORE_EMPTY ? QxImageManager.getBlank() : QxImageManager.buildURI(vSource));
}
else
{
|