mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-22 01:34:21 +00:00
Really minor clean-ups.
This commit is contained in:
parent
01dc36d29d
commit
76c8400049
34 changed files with 142 additions and 143 deletions
|
|
@ -627,8 +627,8 @@ public:
|
|||
|
||||
const Rectangle<int> newBounds ((int) jmin (x1, x2) - 4,
|
||||
(int) jmin (y1, y2) - 4,
|
||||
(int) fabsf (x1 - x2) + 8,
|
||||
(int) fabsf (y1 - y2) + 8);
|
||||
(int) std::abs (x1 - x2) + 8,
|
||||
(int) std::abs (y1 - y2) + 8);
|
||||
|
||||
if (newBounds != getBounds())
|
||||
setBounds (newBounds);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue