1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Minor tidying-up.

This commit is contained in:
jules 2012-09-04 11:38:16 +01:00
parent 4ccba42fa8
commit 842d30fbfa
28 changed files with 113 additions and 117 deletions

View file

@ -42,8 +42,8 @@ class JUCE_API Justification
{
public:
//==============================================================================
/** Creates a Justification object using a combination of flags. */
inline Justification (int flags_) noexcept : flags (flags_) {}
/** Creates a Justification object using a combination of flags from the Flags enum. */
inline Justification (int justificationFlags) noexcept : flags (justificationFlags) {}
/** Creates a copy of another Justification object. */
Justification (const Justification& other) noexcept;
@ -103,7 +103,7 @@ public:
//==============================================================================
/** Flag values that can be combined and used in the constructor. */
enum
enum Flags
{
//==============================================================================
/** Indicates that the item should be aligned against the left edge of the available space. */

View file

@ -42,8 +42,8 @@ class JUCE_API RectanglePlacement
{
public:
//==============================================================================
/** Creates a RectanglePlacement object using a combination of flags. */
inline RectanglePlacement (int flags_) noexcept : flags (flags_) {}
/** Creates a RectanglePlacement object using a combination of flags from the Flags enum. */
inline RectanglePlacement (int placementFlags) noexcept : flags (placementFlags) {}
/** Creates a copy of another RectanglePlacement object. */
RectanglePlacement (const RectanglePlacement& other) noexcept;
@ -56,7 +56,7 @@ public:
//==============================================================================
/** Flag values that can be combined and used in the constructor. */
enum
enum Flags
{
//==============================================================================
/** Indicates that the source rectangle's left edge should be aligned with the left edge of the target rectangle. */