aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2003-12-30 18:14:33 (GMT)
committerfluxgen <fluxgen>2003-12-30 18:14:33 (GMT)
commit35e2057fb77b89ed1726b53b598b27781516d001 (patch)
tree874afd203a6cd3a3f858e2ef23d066acf8ead8f0
parent06eaec00ca01b38d5f431e58d55915401f99425b (diff)
downloadfluxbox_pavel-35e2057fb77b89ed1726b53b598b27781516d001.zip
fluxbox_pavel-35e2057fb77b89ed1726b53b598b27781516d001.tar.bz2
minor fix
-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