summaryrefslogtreecommitdiff
path: root/src/blackbox.hh
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2002-11-05 09:13:46 +0000
committerDana Jansens <danakj@orodu.net>2002-11-05 09:13:46 +0000
commitc9f36d34a414123cec8ebc35c87b8b9d5673b155 (patch)
tree36bfcaafaea855d3b703d57c409c2fd97952b5c3 /src/blackbox.hh
parent68016ac352db39d538f725234a98df7caaa19cc0 (diff)
finish conversion to the new otk::OBProperty class with its new interface
Diffstat (limited to 'src/blackbox.hh')
-rw-r--r--src/blackbox.hh6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/blackbox.hh b/src/blackbox.hh
index 7f07e946..0034f9f2 100644
--- a/src/blackbox.hh
+++ b/src/blackbox.hh
@@ -26,10 +26,10 @@ extern "C" {
#include <string>
#include "otk/timer.hh"
+#include "otk/property.hh"
#include "openbox.hh"
#include "configuration.hh"
#include "timer.hh"
-#include "atom.hh"
#define AttribShaded (1l << 0)
#define AttribMaxHoriz (1l << 1)
@@ -112,7 +112,7 @@ private:
BlackboxWindow *focused_window, *changing_window;
otk::OBTimer *timer;
Configuration config;
- OBAtom *xatom;
+ otk::OBProperty *xatom;
bool no_focus, reconfigure_wait;
Time last_time;
@@ -158,7 +158,7 @@ public:
void removeWindowSearch(Window window);
void removeGroupSearch(Window window);
- inline OBAtom *getXAtom(void) { return xatom; }
+ inline otk::OBProperty *getXAtom(void) { return xatom; }
inline BlackboxWindow *getFocusedWindow(void) { return focused_window; }
inline BlackboxWindow *getChangingWindow(void) { return changing_window; }