t-suw****@users*****
t-suw****@users*****
2007年 10月 20日 (土) 10:41:23 JST
Index: AquaSKK/src/component/SKKSession.cpp
diff -u AquaSKK/src/component/SKKSession.cpp:1.1.2.5 AquaSKK/src/component/SKKSession.cpp:1.1.2.6
--- AquaSKK/src/component/SKKSession.cpp:1.1.2.5 Sun Oct 14 14:50:33 2007
+++ AquaSKK/src/component/SKKSession.cpp Sat Oct 20 10:41:23 2007
@@ -1,5 +1,5 @@
/* -*- C++ -*-
- $Id: SKKSession.cpp,v 1.1.2.5 2007/10/14 05:50:33 t-suwa Exp $
+ $Id: SKKSession.cpp,v 1.1.2.6 2007/10/20 01:41:23 t-suwa Exp $
MacOS X implementation of the SKK input method.
@@ -37,7 +37,9 @@
SKKEventParam param = SKKPreProcessor::theInstance().Execute(event);
handled_ = false;
- engine_.Dispatch(SKKEngine::Event(param.event, param));
+ if(param.event != SKK_NULL) {
+ engine_.Dispatch(SKKEngine::Event(param.event, param));
+ }
if(handled_) {
std::cerr << "handled" << std::endl;
}