diff options
Diffstat (limited to 'src/openbox.hh')
| -rw-r--r-- | src/openbox.hh | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/openbox.hh b/src/openbox.hh index 5e9edd17..b5a47fde 100644 --- a/src/openbox.hh +++ b/src/openbox.hh @@ -15,8 +15,8 @@ extern "C" { #include "otk/screeninfo.hh" #include "otk/timerqueuemanager.hh" +#include "otk/property.hh" #include "xeventhandler.hh" -#include "atom.hh" namespace ob { @@ -74,6 +74,14 @@ private: //! The class which will handle raw XEvents OBXEventHandler _xeventhandler; + //! Cached atoms on the display + /*! + This is a pointer because the OBProperty class uses otk::OBDisplay::display + in its constructor, so, it needs to be initialized <b>after</b> the display + is initialized in this class' constructor. + */ + otk::OBProperty *_property; + //! The running state of the window manager RunState _state; |
