1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-27 02:20:05 +00:00

PixelARGB compile fix for PPC targets.

This commit is contained in:
jules 2012-07-21 20:25:50 +01:00
parent 75d72d6323
commit ad1becb00b
3 changed files with 2 additions and 9 deletions

View file

@ -269,7 +269,7 @@ private:
struct Components
{
#if JUCE_BIG_ENDIAN
uint8 a : 8, r : 8, g : 8, b : 8;
uint8 a, r, g, b;
#else
uint8 b, g, r, a;
#endif

View file

@ -101,11 +101,7 @@ class LassoComponent : public Component
{
public:
//==============================================================================
/** Creates a Lasso component.
The fill colour is used to fill the lasso'ed rectangle, and the outline
colour is used to draw a line around its edge.
*/
/** Creates a Lasso component. */
explicit LassoComponent (const int outlineThickness_ = 1)
: source (nullptr),
outlineThickness (outlineThickness_)

View file

@ -308,7 +308,4 @@ private:
};
#endif // __JUCE_SELECTEDITEMSET_JUCEHEADER__