fixed: handle FILTERING_NONE in switch - get rid of the compiler warning in GUIKeyboa...
authorvdrfan <vdrfan-nospam-@xbmc.org>
Sat, 4 Aug 2012 11:16:18 +0000 (13:16 +0200)
committervdrfan <vdrfan-nospam-@xbmc.org>
Sat, 4 Aug 2012 11:16:18 +0000 (13:16 +0200)
xbmc/guilib/GUIKeyboardFactory.cpp

index 8898e52..83c6cd7 100644 (file)
@@ -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;
     }
   }
 }