Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 594314
Collapse All | Expand All

(-)silgraphite-2.3.1/engine/include/graphite/Segment.h.old (-1 lines)
Lines 142-148 Link Here
142
		LineBrk lbStart, LineBrk lbEnd, SegEnd est,
142
		LineBrk lbStart, LineBrk lbEnd, SegEnd est,
143
		bool fStartLine, bool fEndLine, bool fWsRtl);
143
		bool fStartLine, bool fEndLine, bool fWsRtl);
144
	void DestroyContents();
144
	void DestroyContents();
145
	void SwapWith(Segment * pgrseg);
146
	void ClearAltEndLineSeg();
145
	void ClearAltEndLineSeg();
147
146
148
	ITextSource * GetString(); // client is responsible to Release()
147
	ITextSource * GetString(); // client is responsible to Release()
(-)silgraphite-2.3.1/engine/src/segment/Segment.cpp.old (-15 lines)
Lines 567-587 Link Here
567
}
567
}
568
568
569
/*----------------------------------------------------------------------------------------------
569
/*----------------------------------------------------------------------------------------------
570
	Swap the guts of the two segments.
571
	OBSOLETE
572
----------------------------------------------------------------------------------------------*/
573
void Segment::SwapWith(Segment * pgrseg)
574
{
575
	int crefThis = m_cref;
576
	int crefOther = pgrseg->m_cref;
577
578
	std::swap(*this, *pgrseg);
579
580
	m_cref = crefThis;
581
	pgrseg->m_cref = crefOther;
582
}
583
584
/*----------------------------------------------------------------------------------------------
585
	Delete the pointer to the alternate-end-of-line segment.
570
	Delete the pointer to the alternate-end-of-line segment.
586
----------------------------------------------------------------------------------------------*/
571
----------------------------------------------------------------------------------------------*/
587
void Segment::ClearAltEndLineSeg()
572
void Segment::ClearAltEndLineSeg()

Return to bug 594314