aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Keys.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Keys.cc b/src/Keys.cc
index 8ca47c3..96a12c9 100644
--- a/src/Keys.cc
+++ b/src/Keys.cc
@@ -19,7 +19,7 @@
19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20// DEALINGS IN THE SOFTWARE. 20// DEALINGS IN THE SOFTWARE.
21 21
22//$Id: Keys.cc,v 1.40 2003/12/20 17:37:57 fluxgen Exp $ 22//$Id: Keys.cc,v 1.41 2003/12/30 18:14:33 fluxgen Exp $
23 23
24 24
25#include "Keys.hh" 25#include "Keys.hh"
@@ -243,7 +243,7 @@ bool Keys::addBinding(const std::string &linebuffer) {
243void Keys::doAction(XKeyEvent &ke) { 243void Keys::doAction(XKeyEvent &ke) {
244 static t_key *next_key = 0; 244 static t_key *next_key = 0;
245 // Remove numlock, capslock and scrolllock 245 // Remove numlock, capslock and scrolllock
246 ke.state = FbTk::KeyUtil::cleanMods(ke.state); 246 ke.state = FbTk::KeyUtil::instance().cleanMods(ke.state);
247 247
248 if (!next_key) { 248 if (!next_key) {
249 249