1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-08 04:20:09 +00:00

Minor fix to Atomic. Jucer development.

This commit is contained in:
Julian Storer 2010-05-04 15:27:19 +01:00
parent 7299608550
commit e6a5f1501f
13 changed files with 152 additions and 20 deletions

View file

@ -336,7 +336,7 @@ static void getAllSelectedNodesInTree (Component* componentInTree, OwnedArray <P
bool ProjectTreeViewBase::isInterestedInDragSource (const String& sourceDescription, Component* sourceComponent)
{
if (sourceDescription != String (projectItemDragType))
if (sourceDescription != projectItemDragType)
return false;
OwnedArray <Project::Item> selectedNodes;