From e9852011145090900a1c5dc7a66945349b47415a Mon Sep 17 00:00:00 2001 From: Arthur Arlt Date: Tue, 2 Aug 2011 14:13:08 +0200 Subject: [PATCH] Fix broken build if tiling is disabled --- workspace.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/workspace.cpp b/workspace.cpp index 5cf293acae..25b766e162 100644 --- a/workspace.cpp +++ b/workspace.cpp @@ -573,9 +573,9 @@ Client* Workspace::createClient(Window w, bool is_mapped) return NULL; } addClient(c, Allowed); - +#ifdef KWIN_BUILD_TILING m_tiling->createTile(c); - +#endif return c; }