all repos — openbox @ 8857fa2c24d7c21276d8e5ba7e94bf44617273c9

openbox fork - make it a bit more like ryudo

Slight modification to make it use the new config class calling convention
Marius Nita marius@cs.pdx.edu
commit

8857fa2c24d7c21276d8e5ba7e94bf44617273c9

parent

483b8496d615dc1ed6934fb685b904ad6923b8a1

1 files changed, 3 insertions(+), 1 deletions(-)

jump to
M util/epist/keytree.ccutil/epist/keytree.cc

@@ -220,7 +220,9 @@ }

void keytree::initialize(void) { - int tval = _epist->getConfig()->getNumberValue(Config::chainTimeout); + int tval = 0; + + _epist->getConfig()->getNumberValue(Config::chainTimeout, tval); _timer = new BTimer(_epist, this); if (tval <= 0)