mirror of
https://github.com/debauchee/barrier.git
synced 2024-12-19 08:51:41 +03:00
fixed compiler cast warning in drag info class
This commit is contained in:
parent
95a1752396
commit
de8fe7e2a5
@ -101,7 +101,7 @@ DragInformation::getDragFileExtension(String filename)
|
||||
int
|
||||
DragInformation::setupDragInfo(DragFileList& fileList, String& output)
|
||||
{
|
||||
int size = fileList.size();
|
||||
int size = static_cast<int>(fileList.size());
|
||||
for (int i = 0; i < size; ++i) {
|
||||
output.append(fileList.at(i).getFilename());
|
||||
output.append(",");
|
||||
|
Loading…
Reference in New Issue
Block a user