diff libvo/x11_common.c @ 33966:5c6f715d8042

Make vo_hidecursor() and vo_showcursor() static. These functions are only used within the file.
author ib
date Mon, 05 Sep 2011 11:48:36 +0000
parents ab4b48ef5a68
children 90a73d713bb2
line wrap: on
line diff
--- a/libvo/x11_common.c	Sat Sep 03 15:52:07 2011 +0000
+++ b/libvo/x11_common.c	Mon Sep 05 11:48:36 2011 +0000
@@ -178,7 +178,7 @@
     }
 }
 
-void vo_hidecursor(Display * disp, Window win)
+static void vo_hidecursor(Display * disp, Window win)
 {
     Cursor no_ptr;
     Pixmap bm_no;
@@ -203,7 +203,7 @@
     XFreeColors(disp,colormap,&black.pixel,1,0);
 }
 
-void vo_showcursor(Display * disp, Window win)
+static void vo_showcursor(Display * disp, Window win)
 {
     if (WinID == 0)
         return;