hgwidgets_plat/hgcacheproxymodel_api/inc/hgdataprovidermodel.h
changeset 2 49c70dcc3f17
parent 1 e48454f237ca
child 5 4fa04caf0f43
--- a/hgwidgets_plat/hgcacheproxymodel_api/inc/hgdataprovidermodel.h	Mon May 03 13:32:54 2010 +0300
+++ b/hgwidgets_plat/hgcacheproxymodel_api/inc/hgdataprovidermodel.h	Fri May 14 16:57:01 2010 +0300
@@ -13,7 +13,7 @@
 *
 * Description:
 *
-*  Version     : %version: 3 %
+*  Version     : %version: 5 %
 */
 #ifndef HGDATAPROVIDERMODEL_H_
 #define HGDATAPROVIDERMODEL_H_
@@ -119,13 +119,13 @@
     QList< QPixmap* > mFreePixmaps;
     QMap< int, QPixmap* > mUsedPixmaps;    
     int mUnallocatedPixmaps;
-    QMutex mQPixmapsLock;
+//    QMutex mQPixmapsLock;
     HgDataProviderModelObserver *mObserver;
 };
 
 inline bool HgDataProviderModel::isIndexValid(int idx) const
 {
-    return ((0 <= idx) && 
+    return ((idx >= 0) && 
             (idx < mCache->size()) && 
             (mCache->at(idx))); 
 }