From 8264f15fc68a6ed634426b79fb21f28bb21a0a89 Mon Sep 17 00:00:00 2001 From: Aldo Cortesi Date: Fri, 14 Dec 2007 10:17:27 +1100 Subject: [PATCH] Remove inline declarations in client.h - these don't match what's in the the .c anyway. --- client.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/client.h b/client.h index 69bb8f7a..e5db05e8 100644 --- a/client.h +++ b/client.h @@ -25,8 +25,8 @@ #include "common.h" Client * get_client_bywin(Client *, Window); -inline void client_attach(Client **, Client *); -inline void client_detach(Client **, Client *); +void client_attach(Client **, Client *); +void client_detach(Client **, Client *); void client_reattach_after(Client *, Client *); Bool loadprops(Client *, int ); void client_ban(Client *); @@ -35,7 +35,7 @@ void client_manage(Window, XWindowAttributes *, awesome_config *, int); void client_resize(Client *, int, int, int, int, awesome_config *, Bool, Bool); void client_unban(Client *); void client_unmanage(Client *, long, awesome_config *); -inline void updatesizehints(Client *); +void updatesizehints(Client *); void updatetitle(Client *); void saveprops(Client *, int); void tag_client_with_rules(Client *, awesome_config *);