From: Marius Nita Date: Mon, 26 Aug 2002 06:39:06 +0000 (+0000) Subject: Slight modification to make it use the new config class calling convention X-Git-Url: https://git.brokenzipper.com/gitweb?a=commitdiff_plain;h=8857fa2c24d7c21276d8e5ba7e94bf44617273c9;p=chaz%2Fopenbox Slight modification to make it use the new config class calling convention --- diff --git a/util/epist/keytree.cc b/util/epist/keytree.cc index 6dcba312..45b2fb53 100644 --- a/util/epist/keytree.cc +++ b/util/epist/keytree.cc @@ -220,7 +220,9 @@ void keytree::setCurrentNodeProps(Action::ActionType action, unsigned int mask, 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)