summaryrefslogtreecommitdiff
path: root/src/openbox.cc
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/openbox.cc
parent68016ac352db39d538f725234a98df7caaa19cc0 (diff)
finish conversion to the new otk::OBProperty class with its new interface
Diffstat (limited to 'src/openbox.cc')
-rw-r--r--src/openbox.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/openbox.cc b/src/openbox.cc
index b3dc5b28..f10db5bc 100644
--- a/src/openbox.cc
+++ b/src/openbox.cc
@@ -6,6 +6,7 @@
#include "../version.h"
#include "openbox.hh"
+#include "otk/property.hh"
#include "otk/display.hh"
extern "C" {
@@ -40,7 +41,6 @@ extern "C" {
namespace ob {
-
Openbox *Openbox::instance = (Openbox *) 0;
@@ -95,7 +95,8 @@ Openbox::Openbox(int argc, char **argv)
sigaction(SIGINT, &action, (struct sigaction *) 0);
sigaction(SIGHUP, &action, (struct sigaction *) 0);
-
+ _property = new otk::OBProperty();
+
_state = State_Normal; // done starting
}