[PATCH] Re: [mythtv] Re: [mythtv-commits] mythcontrols added

Donald R. Huettl drh at huettl.net
Mon Jun 6 05:09:00 UTC 2005


Micah F. Galizia wrote:
> On Sat, 2005-04-06 at 12:22 -0600, Devan Lippman wrote:
> 
>>When building CVS I get
>>keybindings.cpp:192: error: `ClearKeylist' undeclared (first use this
>>function)
> 
> 
> Update from CVS and reinstall myth.  The headers and libraries you have
> installed are too old.  ClearKeylist was renamed to ClearKey to maintain
> consistency.
> 

Latest CVS version of keybindings.cpp still calls ClearKeylist.  Patch attached.

DH
-------------- next part --------------
diff -urN mythplugins/mythcontrols/mythcontrols/keybindings.cpp mythplugins.new/mythcontrols/mythcontrols/keybindings.cpp
--- mythplugins/mythcontrols/mythcontrols/keybindings.cpp	2005-05-28 13:26:52.000000000 -0500
+++ mythplugins.new/mythcontrols/mythcontrols/keybindings.cpp	2005-06-05 23:49:37.000000000 -0500
@@ -189,7 +189,7 @@
 	if (query.exec() && query.isActive())
 	{
 	    /* remove the current bindings */
-	    gContext->GetMainWindow()->ClearKeylist(id.first,id.second);
+	    gContext->GetMainWindow()->ClearKey(id.first,id.second);
 
 	    /* make the settings take effect */
 	    gContext->GetMainWindow()->RegisterKey(id.first,


More information about the mythtv-dev mailing list