diff options
| author | Marius Nita <marius@cs.pdx.edu> | 2002-08-26 06:39:06 +0000 |
|---|---|---|
| committer | Marius Nita <marius@cs.pdx.edu> | 2002-08-26 06:39:06 +0000 |
| commit | 8857fa2c24d7c21276d8e5ba7e94bf44617273c9 (patch) | |
| tree | abfe08c2fd454c0549a235c7d04babe57530dd1e | |
| parent | 483b8496d615dc1ed6934fb685b904ad6923b8a1 (diff) | |
Slight modification to make it use the new config class calling convention
| -rw-r--r-- | util/epist/keytree.cc | 4 |
1 files changed, 3 insertions, 1 deletions
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) |
