mirror of
https://github.com/debauchee/barrier.git
synced 2026-02-10 13:45:49 +08:00
fixed compiler cast warning in drag info class
This commit is contained in:
@@ -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(",");
|
||||
|
||||
Reference in New Issue
Block a user