mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Stopped using the old BEGIN_JUCE_NAMESPACE macros, and just used hard-coded namespaces where necessary instead. The macro definitions are still there, so this shouldn't affect anyone's code.
This commit is contained in:
parent
b8397a9888
commit
295d125142
318 changed files with 271 additions and 1363 deletions
|
|
@ -23,9 +23,7 @@
|
|||
==============================================================================
|
||||
*/
|
||||
|
||||
BEGIN_JUCE_NAMESPACE
|
||||
|
||||
//==============================================================================
|
||||
Justification::Justification (const Justification& other) noexcept
|
||||
: flags (other.flags)
|
||||
{
|
||||
|
|
@ -46,6 +44,3 @@ int Justification::getOnlyHorizontalFlags() const noexcept
|
|||
{
|
||||
return flags & (left | right | horizontallyCentred | horizontallyJustified);
|
||||
}
|
||||
|
||||
|
||||
END_JUCE_NAMESPACE
|
||||
|
|
|
|||
|
|
@ -23,9 +23,7 @@
|
|||
==============================================================================
|
||||
*/
|
||||
|
||||
BEGIN_JUCE_NAMESPACE
|
||||
|
||||
//==============================================================================
|
||||
RectanglePlacement::RectanglePlacement (const RectanglePlacement& other) noexcept
|
||||
: flags (other.flags)
|
||||
{
|
||||
|
|
@ -129,6 +127,3 @@ const AffineTransform RectanglePlacement::getTransformToFit (const Rectangle<flo
|
|||
.scaled (scaleX, scaleY)
|
||||
.translated (newX, newY);
|
||||
}
|
||||
|
||||
|
||||
END_JUCE_NAMESPACE
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue