diff options
author | Unknown <t-espave@A3479886.redmond.corp.microsoft.com> | 2011-07-18 16:14:02 -0700 |
---|---|---|
committer | Unknown <t-espave@A3479886.redmond.corp.microsoft.com> | 2011-07-18 16:14:02 -0700 |
commit | d79a795c65df4ef012053c47ef5fe28a1ca2ee06 (patch) | |
tree | 3636cee10d3182a4e6b5dcbb2ffdf267e7178fb6 | |
parent | 10dc1b6325fd4445a972f4807948c0181942ea13 (diff) |
bugfix, was not setting control handlers
-rw-r--r-- | BCT/TranslationPlugins/PhoneControlsPlugin.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/BCT/TranslationPlugins/PhoneControlsPlugin.cs b/BCT/TranslationPlugins/PhoneControlsPlugin.cs index b24df692..201d47d8 100644 --- a/BCT/TranslationPlugins/PhoneControlsPlugin.cs +++ b/BCT/TranslationPlugins/PhoneControlsPlugin.cs @@ -45,6 +45,7 @@ namespace TranslationPlugins { eventHandlers = handlers[p];
} catch (KeyNotFoundException) {
eventHandlers= new List<HandlerSignature>();
+ handlers[p] = eventHandlers;
}
HandlerSignature newHandler= new HandlerSignature();
|