From: dforsi <df...@us...> - 2013-02-15 17:34:27
|
commit 3732944d096943125e4a51f753644a00726acc68 Author: Benno <fw...@ro...> Date: Fri Feb 15 18:27:24 2013 +0100 Fix showing tracks of selected artist on 64-bit systems The handler_id is of type gulong (while signal_id is guint); see http://developer.gnome.org/gobject/unstable/gobject-Signals.html Bug reported in http://sourceforge.net/mailarchive/message.php?msg_id=30490385 plugins/sorttab_display/normal_sorttab_page.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) --- diff --git a/plugins/sorttab_display/normal_sorttab_page.c b/plugins/sorttab_display/normal_sorttab_page.c index ee00304..0fb3286 100644 --- a/plugins/sorttab_display/normal_sorttab_page.c +++ b/plugins/sorttab_display/normal_sorttab_page.c @@ -66,7 +66,7 @@ struct _NormalSortTabPagePrivate { * Handler id of the idle callback when the selection * changed callback is executed */ - guint selection_changed_idle_id; + gulong selection_changed_idle_id; /* name of entry last selected */ GList *last_selection; |