Gentoo Archives: gentoo-commits

From: "Peter Alfredsen (loki_val)" <loki_val@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-irc/smuxi/files: smuxi-0.6.3-mono-2.2.patch
Date: Sat, 31 Jan 2009 22:19:28
Message-Id: E1LTOBS-0006ws-06@stork.gentoo.org
1 loki_val 09/01/31 22:19:25
2
3 Added: smuxi-0.6.3-mono-2.2.patch
4 Log:
5 Initial commit. Ebuild by me.
6 (Portage version: 2.2_rc23/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 net-irc/smuxi/files/smuxi-0.6.3-mono-2.2.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/smuxi/files/smuxi-0.6.3-mono-2.2.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/smuxi/files/smuxi-0.6.3-mono-2.2.patch?rev=1.1&content-type=text/plain
13
14 Index: smuxi-0.6.3-mono-2.2.patch
15 ===================================================================
16 --- src/Frontend-GNOME/FindGroupChatDialog.cs 2008-12-26 16:42:42.000000000 -0700
17 +++ src/Frontend-GNOME/FindGroupChatDialog.cs 2009-01-12 16:55:35.000000000 -0700
18 @@ -115,12 +115,14 @@
19 f_ListStore.Clear();
20 CancelFindThread();
21
22 + EventHandler d = delegate {
23 + GdkWindow.Cursor = new Gdk.Cursor(Gdk.CursorType.Watch);
24 + };
25 +
26 GroupChatModel filter = new GroupChatModel(null, nameFilter, null);
27 f_FindThread = new Thread(new ThreadStart(delegate {
28 try {
29 - Gtk.Application.Invoke(delegate {
30 - GdkWindow.Cursor = new Gdk.Cursor(Gdk.CursorType.Watch);
31 - });
32 + Gtk.Application.Invoke(d);
33
34 IList<GroupChatModel> chats = f_ProtocolManager.FindGroupChats(filter);