View | Details | Raw Unified | Return to issue 16867
Collapse All | Expand All

(-)inc/xoutx.hxx (-3 / +3 lines)
Lines 125-131 Link Here
125
|*
125
|*
126
\************************************************************************/
126
\************************************************************************/
127
127
128
#ifdef MACOSX
128
#if defined(MACOSX) && (__GNUC__ < 3)
129
static Brush aBrush;
129
static Brush aBrush;
130
static Pen aPen;
130
static Pen aPen;
131
#endif
131
#endif
Lines 300-306 Link Here
300
#ifndef NOOLDSV
300
#ifndef NOOLDSV
301
	// Nur Temporaer
301
	// Nur Temporaer
302
	const Pen&			GetPen() const { 
302
	const Pen&			GetPen() const { 
303
#ifndef MACOSX
303
#if !(defined(MACOSX) && (__GNUC__ < 3))
304
                static Pen aPen; 
304
                static Pen aPen; 
305
#endif
305
#endif
306
                aPen = pOut->GetPen(); return aPen; 
306
                aPen = pOut->GetPen(); return aPen; 
Lines 308-314 Link Here
308
	void				SetPen( const Pen& rPen ) { pOut->SetPen( rPen ); }
308
	void				SetPen( const Pen& rPen ) { pOut->SetPen( rPen ); }
309
309
310
	const Brush&		GetBrush() const { 
310
	const Brush&		GetBrush() const { 
311
#ifndef MACOSX
311
#if !(defined(MACOSX) && (__GNUC__ < 3))
312
                static Brush aBrush; 
312
                static Brush aBrush; 
313
#endif
313
#endif
314
                aBrush = pOut->GetFillInBrush(); return aBrush; 
314
                aBrush = pOut->GetFillInBrush(); return aBrush; 

Return to issue 16867