From 3909f06ab8da1b5841b7e4a279c9c9211c763347 Mon Sep 17 00:00:00 2001 From: Jerome St-Louis Date: Wed, 24 Aug 2011 01:41:01 -0400 Subject: [PATCH] Added a missing (uint) cast to a SetData --- explorer/src/ExplorerTree.ec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/explorer/src/ExplorerTree.ec b/explorer/src/ExplorerTree.ec index d3993bb..3d654da 100644 --- a/explorer/src/ExplorerTree.ec +++ b/explorer/src/ExplorerTree.ec @@ -323,7 +323,7 @@ public: row.tag = (int)item; row.SetData(nameField, item); row.SetData(typeField, CopyString(item.extension)); - row.SetData(sizeField, (void *)listing.stats.size); + row.SetData(sizeField, (uint)listing.stats.size); } list.Sort(nameField, 1); } -- 1.8.3.1