WingMan – Diff between revs 7 and 10

Subversion Repositories:
Rev:
Only display areas with differencesIgnore whitespace
Rev 7 Rev 10
1 using System; 1 using System;
2   2  
3 namespace WingMan.MouseKey 3 namespace WingMan.MouseKey
4 { 4 {
5 public class MouseKeyBindingsSynchronizedEventArgs : EventArgs 5 public class KeyBindingsSynchronizerEventArgs : EventArgs
6 { 6 {
7 public MouseKeyBindingsSynchronizedEventArgs(MouseKeyBindingExchange mouseKeyExchangeBindings) 7 public KeyBindingsSynchronizerEventArgs(KeyBindingExchange keyExchangeBindings)
8 { 8 {
9 Bindings = mouseKeyExchangeBindings; 9 Bindings = keyExchangeBindings;
10 } 10 }
11   11  
12 public MouseKeyBindingExchange Bindings { get; set; } 12 public KeyBindingExchange Bindings { get; set; }
13 } 13 }
14 } 14 }
15   15