Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 126601 | Differences between
and this patch

Collapse All | Expand All

(-)engine/encoder.h.orig (-1 / +1 lines)
Lines 185-191 Link Here
185
														GLASSERT( numRGBA >= numSegment );
185
														GLASSERT( numRGBA >= numSegment );
186
//														GLASSERT( numSegment >= numLine );
186
//														GLASSERT( numSegment >= numLine );
187
													 }
187
													 }
188
	void KrEncoder::Save();
188
	void Save();
189
189
190
	KrResourceVault* GetVault()						{ return &vault; }
190
	KrResourceVault* GetVault()						{ return &vault; }
191
191
(-)engine/imagetree.h.orig (-1 / +1 lines)
Lines 217-223 Link Here
217
	void Clear( KrImNode* root );	// delete the entire tree
217
	void Clear( KrImNode* root );	// delete the entire tree
218
218
219
	// Recursive hit test walk.
219
	// Recursive hit test walk.
220
	bool KrImageTree::HitTestRec( KrImNode* node, int x, int y, int flags, GlDynArray<KrImage*>* outputArray, int windowIndex );
220
	bool HitTestRec( KrImNode* node, int x, int y, int flags, GlDynArray<KrImage*>* outputArray, int windowIndex );
221
221
222
	KrImNode*  root;			// The root to position the window
222
	KrImNode*  root;			// The root to position the window
223
	KrImNode*  offsetRoot;		// The root as returned to the client
223
	KrImNode*  offsetRoot;		// The root as returned to the client
(-)guiExtended/progress.h.orig (-2 / +2 lines)
Lines 43-49 Link Here
43
	/** if width of the resource is greater then its height then makes
43
	/** if width of the resource is greater then its height then makes
44
		a horizontal, else makes a vertical progress bar
44
		a horizontal, else makes a vertical progress bar
45
	*/
45
	*/
46
	KrProgress::KrProgress (int width,
46
	KrProgress (int width,
47
							int height,
47
							int height,
48
							KrRGBA FillColor,
48
							KrRGBA FillColor,
49
							KrRGBA ChangeColor,
49
							KrRGBA ChangeColor,
Lines 53-59 Link Here
53
	/** if width of the resource is greater then its height then makes
53
	/** if width of the resource is greater then its height then makes
54
		a horizontal, else makes a vertical progress bar
54
		a horizontal, else makes a vertical progress bar
55
	*/
55
	*/
56
	KrProgress::KrProgress (int width,
56
	KrProgress (int width,
57
							int height,
57
							int height,
58
							const KrScheme& scheme);
58
							const KrScheme& scheme);
59
59

Return to bug 126601