diff options
| author | Marius Nita <marius@cs.pdx.edu> | 2002-08-26 15:00:14 +0000 |
|---|---|---|
| committer | Marius Nita <marius@cs.pdx.edu> | 2002-08-26 15:00:14 +0000 |
| commit | a95a6bd8e81a6bcc9db8abbbb3c0c78f087733f4 (patch) | |
| tree | 7380ce892ce084fd237e4db4d22ebd4d65934f55 /util/epist/screen.cc | |
| parent | afa215efb64b0e390ced816373a444fafe9c70b0 (diff) | |
Fixed goof in config interface. All the functions are now named getValue(), since they have different signatures.
Diffstat (limited to 'util/epist/screen.cc')
| -rw-r--r-- | util/epist/screen.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/util/epist/screen.cc b/util/epist/screen.cc index de5c29c2..edaeb8f8 100644 --- a/util/epist/screen.cc +++ b/util/epist/screen.cc @@ -64,7 +64,7 @@ screen::screen(epist *epist, int number) _info = _epist->getScreenInfo(_number); _root = _info->getRootWindow(); - _config->getBoolValue(Config::stackedCycling, _stacked_cycling); + _config->getValue(Config::stackedCycling, _stacked_cycling); // find a window manager supporting NETWM, waiting for it to load if we must int count = 20; // try for 20 seconds @@ -672,7 +672,7 @@ void screen::changeWorkspaceVert(const int num) const { int active_desktop = (signed)_active_desktop; int wnum = 0; - _config->getNumberValue(Config::workspaceColumns, width); + _config->getValue(Config::workspaceColumns, width); if (width > num_desktops || width <= 0) return; @@ -704,7 +704,7 @@ void screen::changeWorkspaceHorz(const int num) const { int active_desktop = (signed)_active_desktop; int wnum = 0; - _config->getNumberValue(Config::workspaceColumns, width); + _config->getValue(Config::workspaceColumns, width); if (width > num_desktops || width <= 0) return; |
