From a95a6bd8e81a6bcc9db8abbbb3c0c78f087733f4 Mon Sep 17 00:00:00 2001 From: Marius Nita Date: Mon, 26 Aug 2002 15:00:14 +0000 Subject: Fixed goof in config interface. All the functions are now named getValue(), since they have different signatures. --- util/epist/screen.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'util/epist/screen.cc') 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; -- cgit v1.2.3