[MPlayer-cvslog] r31390 - trunk/gui/wm/ws.c
reimar
subversion at mplayerhq.hu
Sun Jun 13 20:20:07 CEST 2010
Author: reimar
Date: Sun Jun 13 20:20:07 2010
New Revision: 31390
Log:
Drop inline attribute, it does not really make sense and without
static just won't work as expected either.
Modified:
trunk/gui/wm/ws.c
Modified: trunk/gui/wm/ws.c
==============================================================================
--- trunk/gui/wm/ws.c Sun Jun 13 19:59:59 2010 (r31389)
+++ trunk/gui/wm/ws.c Sun Jun 13 20:20:07 2010 (r31390)
@@ -108,7 +108,7 @@ unsigned long wsKeyTable[512];
int wsUseXShm = 1;
int wsUseXShape = 1;
-inline int wsSearch( Window win );
+int wsSearch( Window win );
// ---
@@ -547,7 +547,7 @@ void wsDestroyWindow( wsTWindow * win )
// Handle events.
// ----------------------------------------------------------------------------------------------
-inline int wsSearch( Window win )
+int wsSearch( Window win )
{
int i;
for ( i=0;i<wsWLCount;i++ ) if ( wsWindowList[i] && wsWindowList[i]->WindowID == win ) return i;
More information about the MPlayer-cvslog
mailing list