diff options
author | vdrfan <vdrfan-nospam-@xbmc.org> | 2012-08-04 13:16:18 +0200 |
---|---|---|
committer | vdrfan <vdrfan-nospam-@xbmc.org> | 2012-08-04 13:16:18 +0200 |
commit | 482ff6f2c9abe01214510cadf8a7d45188fa58e4 (patch) | |
tree | 70279aa0cfbbdb03913f1da090faa6c6c05c29c9 | |
parent | ef5fd1c35ab47e2ce71795e8da610b5779cf129d (diff) |
fixed: handle FILTERING_NONE in switch - get rid of the compiler warning in GUIKeyboardFactory.cpp
-rw-r--r-- | xbmc/guilib/GUIKeyboardFactory.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/xbmc/guilib/GUIKeyboardFactory.cpp b/xbmc/guilib/GUIKeyboardFactory.cpp index 8898e52a78..83c6cd7e23 100644 --- a/xbmc/guilib/GUIKeyboardFactory.cpp +++ b/xbmc/guilib/GUIKeyboardFactory.cpp @@ -64,6 +64,8 @@ void CGUIKeyboardFactory::keyTypedCB(CGUIKeyboard *ref, const std::string &typed message.SetStringParam(typedString); g_windowManager.SendMessage(message); break; + case FILTERING_NONE: + break; } } } |