changeset 31324:7fba3e0df3cb

Drop inline attribute, it does not really make sense and without static just won't work as expected either.
author reimar
date Sun, 13 Jun 2010 18:20:07 +0000
parents c674bb16fa6d
children e45b8fb721fd
files gui/wm/ws.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/gui/wm/ws.c	Sun Jun 13 17:59:59 2010 +0000
+++ b/gui/wm/ws.c	Sun Jun 13 18:20:07 2010 +0000
@@ -108,7 +108,7 @@
 int                  wsUseXShm = 1;
 int                  wsUseXShape = 1;
 
-inline int wsSearch( Window win );
+int wsSearch( Window win );
 
 // ---
 
@@ -547,7 +547,7 @@
 //   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;