fixed indentation

This commit is contained in:
fluxgen 2002-01-18 01:33:58 +00:00
parent 1817ff7579
commit a742d228c7

View file

@ -22,7 +22,7 @@
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE. // DEALINGS IN THE SOFTWARE.
// $Id: Window.hh,v 1.4 2002/01/11 10:40:59 fluxgen Exp $ // $Id: Window.hh,v 1.5 2002/01/18 01:33:58 fluxgen Exp $
#ifndef _WINDOW_HH_ #ifndef _WINDOW_HH_
#define _WINDOW_HH_ #define _WINDOW_HH_
@ -84,6 +84,8 @@ class Tab;
class FluxboxWindow : public TimeoutHandler { class FluxboxWindow : public TimeoutHandler {
public: public:
enum Error{NOERROR=0, XGETWINDOWATTRIB, CANTFINDSCREEN};
FluxboxWindow(Window, BScreen * = (BScreen *) 0); FluxboxWindow(Window, BScreen * = (BScreen *) 0);
virtual ~FluxboxWindow(void); virtual ~FluxboxWindow(void);
@ -103,7 +105,7 @@ public:
inline const bool &isStuck(void) const { return stuck; } inline const bool &isStuck(void) const { return stuck; }
inline const bool &hasTitlebar(void) const { return decorations.titlebar; } inline const bool &hasTitlebar(void) const { return decorations.titlebar; }
inline const bool hasTab(void) const { return (tab!=0 ? true : false); } inline const bool hasTab(void) const { return (tab!=0 ? true : false); }
static void showError(FluxboxWindow::Error error);
inline BScreen *getScreen(void) { return screen; } inline BScreen *getScreen(void) { return screen; }
inline Tab *getTab(void) { return tab; } inline Tab *getTab(void) { return tab; }
inline FluxboxWindow *getTransient(void) { return client.transient; } inline FluxboxWindow *getTransient(void) { return client.transient; }