changeset 1341:981ffc1cc402 trunk

[svn] - properly cast the GDK_WINDOW()
author nenolod
date Wed, 28 Jun 2006 01:31:31 -0700
parents eaa1b6342e75
children ff66fd03e7dc
files ChangeLog audacious/ui_fileinfo.c
diffstat 2 files changed, 11 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Tue Jun 27 23:14:47 2006 -0700
+++ b/ChangeLog	Wed Jun 28 01:31:31 2006 -0700
@@ -1,3 +1,12 @@
+2006-06-28 06:14:47 +0000  Yoshiki Yazawa <yaz@cc.rim.or.jp>
+  revision [1592]
+  - itemtag buffer was too short. e.g. 256 bytes could hold only 28 url encoded kanji characters.
+  
+
+  Changes:        Modified:
+  +3 -2           trunk/Plugins/General/scrobbler/scrobbler.c  
+
+
 2006-06-28 03:32:51 +0000  William Pitcock <nenolod@nenolod.net>
   revision [1590]
   - improve resampling rate detection algorithm
--- a/audacious/ui_fileinfo.c	Tue Jun 27 23:14:47 2006 -0700
+++ b/audacious/ui_fileinfo.c	Wed Jun 28 01:31:31 2006 -0700
@@ -66,6 +66,7 @@
 
 GtkWidget *fileinfo_win;
 GtkWidget *filepopup_win;
+GdkPixbuf *filepopup_pixbuf;
 
 static void
 fileinfo_entry_set_text(const char *entry, const char *text)
@@ -180,7 +181,7 @@
 	gboolean skip = FALSE;
 
 	if (playlistwin_is_shaded() || playlistwin_list->pl_tooltips == FALSE
-		|| gdk_window_at_pointer(NULL, NULL) != playlistwin->window
+		|| gdk_window_at_pointer(NULL, NULL) != GDK_WINDOW(playlistwin->window)
 		|| gdk_window_at_pointer(NULL, NULL) == NULL)
 	{
 		ctr = 0;