mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Fixed a silly mistake in SelectedItemSet.
This commit is contained in:
parent
cc5d194b75
commit
2626bec010
1 changed files with 1 additions and 1 deletions
|
|
@ -77,7 +77,7 @@ public:
|
|||
if (! other.isSelected (selectedItems.getReference (i)))
|
||||
itemDeselected (selectedItems.remove (i));
|
||||
|
||||
for (SelectableItemType* i = other.selectedItems.begin(), *e = other.selectedItems.begin(); i != e; ++i)
|
||||
for (SelectableItemType* i = other.selectedItems.begin(), *e = other.selectedItems.end(); i != e; ++i)
|
||||
{
|
||||
if (! isSelected (*i))
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue