Browse Source

Fixed some misleading indentation

tags/2021-05-28
ed 6 years ago
parent
commit
3d7b002a8f
2 changed files with 3 additions and 3 deletions
  1. +2
    -2
      modules/juce_blocks_basics/topology/internal/juce_BlockImplementation.cpp
  2. +1
    -1
      modules/juce_blocks_basics/topology/internal/juce_Detector.cpp

+ 2
- 2
modules/juce_blocks_basics/topology/internal/juce_BlockImplementation.cpp View File

@@ -858,8 +858,8 @@ public:
if (t.value.isActive)
killTouch (t.touch, t.value, now);
touches.clear();
}
touches.clear();
}
BlockImplementation& blockImpl;
TouchList<TouchStatus> touches;


+ 1
- 1
modules/juce_blocks_basics/topology/internal/juce_Detector.cpp View File

@@ -468,7 +468,7 @@ private:
if (auto block = currentTopology.getBlockWithUID (deviceID))
return BlockImpl::getFrom (*block);
return nullptr;
return nullptr;
}
OwnedArray<ConnectedDeviceGroup<Detector>> connectedDeviceGroups;


Loading…
Cancel
Save