mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-18 00:54:19 +00:00
Fixed a VS2013 compiler error
This commit is contained in:
parent
4dcce5083c
commit
8aca5604eb
1 changed files with 2 additions and 2 deletions
|
|
@ -1082,7 +1082,7 @@ void TreeView::fileDragEnter (const StringArray& files, int x, int y)
|
|||
|
||||
void TreeView::fileDragMove (const StringArray& files, int x, int y)
|
||||
{
|
||||
handleDrag (files, SourceDetails ({}, this, { x, y }));
|
||||
handleDrag (files, SourceDetails (var(), this, { x, y }));
|
||||
}
|
||||
|
||||
void TreeView::fileDragExit (const StringArray&)
|
||||
|
|
@ -1092,7 +1092,7 @@ void TreeView::fileDragExit (const StringArray&)
|
|||
|
||||
void TreeView::filesDropped (const StringArray& files, int x, int y)
|
||||
{
|
||||
handleDrop (files, SourceDetails ({}, this, { x, y }));
|
||||
handleDrop (files, SourceDetails (var(), this, { x, y }));
|
||||
}
|
||||
|
||||
bool TreeView::isInterestedInDragSource (const SourceDetails& /*dragSourceDetails*/)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue