By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 698
Collapse All | Expand All

(-)a/kopete/protocols/jabber/libiris/iris/xmpp-core/xmlprotocol.cpp (-8 / +1 lines)
Lines 84-100 Link Here
84
// to make it pretty.
84
// to make it pretty.
85
static TQString xmlToString(const TQDomElement &e, const TQString &fakeNS, const TQString &fakeTQName, bool clip)
85
static TQString xmlToString(const TQDomElement &e, const TQString &fakeNS, const TQString &fakeTQName, bool clip)
86
{
86
{
87
	TQDomElement i = e.cloneNode().toElement();
88
89
	// It seems TQDom can only have one namespace attribute at a time (see docElement 'HACK').
90
	// Fortunately we only need one kind depending on the input, so it is specified here.
91
	TQDomElement fake = e.ownerDocument().createElementNS(fakeNS, fakeTQName);
92
	fake.appendChild(i);
93
	fake = stripExtraNS(fake);
94
	TQString out;
87
	TQString out;
95
	{
88
	{
96
		TQTextStream ts(&out, IO_WriteOnly);
89
		TQTextStream ts(&out, IO_WriteOnly);
97
		fake.firstChild().save(ts, 0);
90
		e.save(ts, 0);
98
	}
91
	}
99
	// 'clip' means to remove any unwanted (and unneeded) characters, such as a trailing newline
92
	// 'clip' means to remove any unwanted (and unneeded) characters, such as a trailing newline
100
	if(clip) {
93
	if(clip) {

Return to bug 698