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

Really minor clean-ups.

This commit is contained in:
jules 2014-01-12 18:06:48 +00:00
parent 01dc36d29d
commit 76c8400049
34 changed files with 142 additions and 143 deletions

View file

@ -62,10 +62,10 @@ public:
explicit EdgeTable (const Rectangle<float>& rectangleToAdd);
/** Creates a copy of another edge table. */
EdgeTable (const EdgeTable& other);
EdgeTable (const EdgeTable&);
/** Copies from another edge table. */
EdgeTable& operator= (const EdgeTable& other);
EdgeTable& operator= (const EdgeTable&);
/** Destructor. */
~EdgeTable();
@ -73,7 +73,7 @@ public:
//==============================================================================
void clipToRectangle (const Rectangle<int>& r);
void excludeRectangle (const Rectangle<int>& r);
void clipToEdgeTable (const EdgeTable& other);
void clipToEdgeTable (const EdgeTable&);
void clipLineToMask (int x, int y, const uint8* mask, int maskStride, int numPixels);
bool isEmpty() noexcept;
const Rectangle<int>& getMaximumBounds() const noexcept { return bounds; }

View file

@ -67,21 +67,21 @@ public:
Path();
/** Creates a copy of another path. */
Path (const Path& other);
Path (const Path&);
/** Destructor. */
~Path();
/** Copies this path from another one. */
Path& operator= (const Path& other);
Path& operator= (const Path&);
#if JUCE_COMPILER_SUPPORTS_MOVE_SEMANTICS
Path (Path&& other) noexcept;
Path& operator= (Path&& other) noexcept;
Path (Path&&) noexcept;
Path& operator= (Path&&) noexcept;
#endif
bool operator== (const Path& other) const noexcept;
bool operator!= (const Path& other) const noexcept;
bool operator== (const Path&) const noexcept;
bool operator!= (const Path&) const noexcept;
//==============================================================================
/** Returns true if the path doesn't contain any lines or curves. */
@ -558,7 +558,7 @@ public:
The internal data of the two paths is swapped over, so this is much faster than
copying it to a temp variable and back.
*/
void swapWithPath (Path& other) noexcept;
void swapWithPath (Path&) noexcept;
//==============================================================================
/** Applies a 2D transform to all the vertices in the path.