From be177ecb27c14280848f43b17f74d49dc752a4fc Mon Sep 17 00:00:00 2001 From: thunder2 Date: Mon, 11 Jun 2012 21:32:22 +0000 Subject: [PATCH] Fixed one more compiling issue. git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@5214 b45a01b8-16f6-495d-af2f-9b41ad6348cc --- retroshare-gui/src/gui/SearchDialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/retroshare-gui/src/gui/SearchDialog.cpp b/retroshare-gui/src/gui/SearchDialog.cpp index 25f10ba2f..81eee0423 100644 --- a/retroshare-gui/src/gui/SearchDialog.cpp +++ b/retroshare-gui/src/gui/SearchDialog.cpp @@ -1067,7 +1067,7 @@ void SearchDialog::insertFile(qulonglong searchId, const FileDetail& file, int s */ item->setText(SR_SIZE_COL, QString::number(file.size)); - item->setData(SR_SIZE_COL, ROLE_SORT, file.size); + item->setData(SR_SIZE_COL, ROLE_SORT, (qulonglong) file.size); item->setText(SR_AGE_COL, QString::number(file.age)); item->setData(SR_AGE_COL, ROLE_SORT, file.age); item->setTextAlignment( SR_SIZE_COL, Qt::AlignRight );