Fixed signed unsigned comparison.

git-svn-id: http://yate.null.ro/svn/yate/trunk@3952 acf43c95-373e-0410-b603-e72c3f656dc1
This commit is contained in:
marian 2010-12-16 11:49:24 +00:00
parent a9c5e81faf
commit 6dd02e290c
1 changed files with 1 additions and 1 deletions

View File

@ -2363,7 +2363,7 @@ bool QtWindow::eventFilter(QObject* obj, QEvent* event)
QHeaderView* hdr = w.table()->horizontalHeader();
bool skipLast = hdr && hdr->stretchLastSection();
ObjList* list = value.split(',',false);
unsigned int col = 0;
int col = 0;
for (ObjList* o = list->skipNull(); o; o = o->skipNext(), col++) {
if (skipLast && col == w.table()->columnCount() - 1)
break;