From 33234b75eb55be67c413db06ba4e1bf45c368672 Mon Sep 17 00:00:00 2001 From: Nikhil Marathe Date: Wed, 5 May 2010 13:50:16 +0000 Subject: [PATCH] Made createTile() and tileable() public svn path=/trunk/KDE/kdebase/workspace/; revision=1123170 --- workspace.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/workspace.h b/workspace.h index 2da55bc8a1..39d882e18e 100644 --- a/workspace.h +++ b/workspace.h @@ -176,6 +176,8 @@ class Workspace : public QObject, public KDecorationDefines public: bool tilingEnabled() const; void setTilingEnabled( bool tiling ); + bool tileable( Client *c ); + void createTile( Client *c ); void updateAllTiles(); void notifyWindowResize( Client *c, const QRect &moveResizeGeom, const QRect &orig ); void notifyWindowMove( Client *c, const QRect &moveResizeGeom, const QRect &orig ); @@ -843,9 +845,7 @@ class Workspace : public QObject, public KDecorationDefines static bool sessionInfoWindowTypeMatch( Client* c, SessionInfo* info ); Tile* getNiceTile() const; - void createTile( Client *c ); void removeTile( Client *c ); - bool tileable( Client *c ); // int, and not Tile::Direction because // we are using a forward declaration for Tile Tile* findAdjacentTile( Tile *ref, int d );