Fix broken build if tiling is disabled

This commit is contained in:
Arthur Arlt 2011-08-02 14:13:08 +02:00
parent 5213c4aff6
commit e985201114

View file

@ -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;
}