hgcacheproxymodel/src/hgbuffermanager.cpp
changeset 5 4fa04caf0f43
parent 3 c863538fcbb6
child 6 1cdcc61142d2
--- a/hgcacheproxymodel/src/hgbuffermanager.cpp	Thu May 27 13:59:05 2010 +0300
+++ b/hgcacheproxymodel/src/hgbuffermanager.cpp	Fri Jun 11 14:43:11 2010 +0300
@@ -13,7 +13,7 @@
 *
 * Description:
 *
-*  Version     : %version: 4 %
+*  Version     : %version: 5 %
 */
 #include "hgbuffermanager.h"
 #include <hgwidgets/hgcacheproxymodel.h>
@@ -246,7 +246,7 @@
 
 void HgBufferManager::aboutToInsertItem(int pos)
 {
-    if(pos < 0 || pos >= mTotalCount ){
+    if(pos < 0 || pos > mTotalCount ){
         return;
     }
 
@@ -260,7 +260,7 @@
 
 void HgBufferManager::insertedItem(int pos)
 {
-    if(pos < 0 || pos >= mTotalCount ){
+    if(pos < 0 || pos > mTotalCount ){
         return;
     }