View | Details | Raw Unified | Return to bug 24772
Collapse All | Expand All

(-)kdenetwork-3.5.10.orig/kopete/kopete/chatwindow/krichtexteditpart.cpp (-1 / +1 lines)
Lines 38-44 Link Here
38
KopeteRichTextEditPart::KopeteRichTextEditPart( QWidget *wparent, const char *wname, QObject*, const char*, const QStringList& )
38
KopeteRichTextEditPart::KopeteRichTextEditPart( QWidget *wparent, const char *wname, QObject*, const char*, const QStringList& )
39
	: KParts::ReadOnlyPart( wparent, wname ? wname : "rich_text_part" )
39
	: KParts::ReadOnlyPart( wparent, wname ? wname : "rich_text_part" )
40
{
40
{
41
	KopeteRichTextEditPart::KopeteRichTextEditPart( wparent, wname, false );
41
	KopeteRichTextEditPart( wparent, wname, false );
42
}
42
}
43
43
44
KopeteRichTextEditPart::KopeteRichTextEditPart( QWidget *parent, const char *name, int capabilities )
44
KopeteRichTextEditPart::KopeteRichTextEditPart( QWidget *parent, const char *name, int capabilities )
(-)kdenetwork-3.5.10.orig/kopete/kopete/contactlist/kopetegroupviewitem.cpp (-1 / +1 lines)
Lines 169-175 Link Here
169
	// the sorting itself is rather slow. Therefore we call delayedSort, which tries
169
	// the sorting itself is rather slow. Therefore we call delayedSort, which tries
170
	// to group multiple sort requests into one.
170
	// to group multiple sort requests into one.
171
	using namespace Kopete::UI::ListView;
171
	using namespace Kopete::UI::ListView;
172
	if ( ListView::ListView *lv = dynamic_cast<ListView::ListView *>( listView() ) )
172
	if ( ListView *lv = dynamic_cast<ListView *>( listView() ) )
173
		lv->delayedSort();
173
		lv->delayedSort();
174
	else
174
	else
175
		listView()->sort();
175
		listView()->sort();
(-)kdenetwork-3.5.10.orig/kopete/protocols/testbed/testbedaccount.h (-1 / +1 lines)
Lines 59-65 Link Here
59
	/**
59
	/**
60
	 * 'Connect' to the testbed server.  Only sets myself() online.
60
	 * 'Connect' to the testbed server.  Only sets myself() online.
61
	 */
61
	 */
62
	virtual void connect( const Kopete::OnlineStatus& initialStatus = Kopete::OnlineStatus::OnlineStatus() );
62
	virtual void connect( const Kopete::OnlineStatus& initialStatus = Kopete::OnlineStatus() );
63
	/**
63
	/**
64
	 * Disconnect from the server.  Only sets myself() offline.
64
	 * Disconnect from the server.  Only sets myself() offline.
65
	 */
65
	 */

Return to bug 24772