changeset 2613:0280eb67fd5d trunk

[svn] - use gdk_get_default_root_window in place of NULL for gdk_window_get_pointer
author giacomo
date Wed, 07 Mar 2007 16:26:51 -0800
parents ba44276ecdc8
children deb09bfd716b
files ChangeLog src/audacious/build_stamp.c src/audacious/ui_fileinfopopup.c
diffstat 3 files changed, 17 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Tue Mar 06 19:04:48 2007 -0800
+++ b/ChangeLog	Wed Mar 07 16:26:51 2007 -0800
@@ -1,3 +1,18 @@
+2007-03-07 03:04:48 +0000  Kiyoshi Aman <kiyoshi.aman@gmail.com>
+  revision [4234]
+  remove autotools macros that aren't used in audacious core any more
+  
+  trunk/m4/amidi-plug.m4 |   33 --
+  trunk/m4/arts.m4       |  131 -----------
+  trunk/m4/jack.m4       |   56 ----
+  trunk/m4/libFLAC.m4    |  106 ---------
+  trunk/m4/libmikmod.m4  |   86 -------
+  trunk/m4/lirc.m4       |  363 --------------------------------
+  trunk/m4/sdl.m4        |   70 ------
+  trunk/m4/sidplay.m4    |  552 -------------------------------------------------
+  8 files changed, 1397 deletions(-)
+
+
 2007-03-07 02:54:10 +0000  Kiyoshi Aman <kiyoshi.aman@gmail.com>
   revision [4232]
   why are we still checking for GConf? checks and related OMK data removed
--- a/src/audacious/build_stamp.c	Tue Mar 06 19:04:48 2007 -0800
+++ b/src/audacious/build_stamp.c	Wed Mar 07 16:26:51 2007 -0800
@@ -1,2 +1,2 @@
 #include <glib.h>
-const gchar *svn_stamp = "20070307-4232";
+const gchar *svn_stamp = "20070307-4234";
--- a/src/audacious/ui_fileinfopopup.c	Tue Mar 06 19:04:48 2007 -0800
+++ b/src/audacious/ui_fileinfopopup.c	Wed Mar 07 16:26:51 2007 -0800
@@ -434,7 +434,7 @@
         audacious_fileinfopopup_progress_cb(filepopup_win);
     }
 
-    gdk_window_get_pointer(NULL, &x, &y, NULL);
+    gdk_window_get_pointer(gdk_get_default_root_window(), &x, &y, NULL);
     gtk_window_get_size(GTK_WINDOW(filepopup_win), &w, &h);
     if (gdk_screen_width()-(w+3) < x) x_off = (w*-1)-3;
     if (gdk_screen_height()-(h+3) < y) y_off = (h*-1)-3;